Fixed some bugs (oops)

This commit is contained in:
Belac Darkstorm
2016-09-22 20:25:26 -05:00
parent fc3411e568
commit 5eeb9cc702
4 changed files with 47 additions and 23 deletions
+9
View File
@@ -35,3 +35,12 @@ func appMain(dri gxui.Driver) {
setup()
ui()
}
func contains(arr []string, str string) bool {
for _, v := range arr {
if v == str {
return true
}
}
return false
}