| @@ -47,7 +47,7 @@ Draw \ | |||||
| found = NoteFind (StrMid (text.cnt_, cnt * 3, 3)) | found = NoteFind (StrMid (text.cnt_, cnt * 3, 3)) | ||||
| If (found = -1) { | |||||
| If found = -1 { | |||||
| found = UNKNOWN | found = UNKNOWN | ||||
| } | } | ||||
| @@ -1,15 +1,32 @@ | |||||
| #module \ | #module \ | ||||
| Keyboard | Keyboard | ||||
| #defcfunc local \ | |||||
| New | |||||
| insNum++ | |||||
| #deffunc local \ | |||||
| Show | |||||
| showing = True | |||||
| text = "" | |||||
| Return | |||||
| #deffunc local \ | |||||
| Hide | |||||
| showing = False | |||||
| Return insNum - 1 | |||||
| Return | |||||
| #deffunc local \ | #deffunc local \ | ||||
| Set \ | |||||
| GetChar | |||||
| if showing = False { | |||||
| Return "" | |||||
| } | |||||
| ; text += charDict | |||||
| Return "" | |||||
| #deffunc local \ | |||||
| Draw | |||||
| #global | #global | ||||