summaryrefslogtreecommitdiff
path: root/shiftos_next/file skimmer.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-05-22 17:42:21 -0400
committerTheUltimateHacker <[email protected]>2015-05-22 17:42:21 -0400
commit02df35aba0fc3b92fdd72eca5a35c6744e993951 (patch)
tree234078d66b2a09b3a190da3497cfb19120b87491 /shiftos_next/file skimmer.vb
parented36135241a8d6d8ab4005a55f89ab8765f1a969 (diff)
downloadshiftos-next-02df35aba0fc3b92fdd72eca5a35c6744e993951.tar.gz
shiftos-next-02df35aba0fc3b92fdd72eca5a35c6744e993951.tar.bz2
shiftos-next-02df35aba0fc3b92fdd72eca5a35c6744e993951.zip
New ways to earn Codepoints + Terminal Cleanup
Alrighty. This one's a small one. I've ported the two beginner apps from UltraDOS that helped you earn codepoints (scriptpoints in UltraDOS) to ShiftOS-Next. I've also moved some Terminal methods like AddLine() to an API.vb module. I've also hid the MathQuiz and GuessTheNumber code in the TerminalGames module.
Diffstat (limited to 'shiftos_next/file skimmer.vb')
-rw-r--r--shiftos_next/file skimmer.vb2
1 files changed, 2 insertions, 0 deletions
diff --git a/shiftos_next/file skimmer.vb b/shiftos_next/file skimmer.vb
index 0d5ff98..3e3e726 100644
--- a/shiftos_next/file skimmer.vb
+++ b/shiftos_next/file skimmer.vb
@@ -61,6 +61,8 @@
FileType = "Data File"
Case ".dri"
FileType = "Driver"
+ Case Else
+ FileType = "Unknown File"
End Select
Return FileType
End Function