You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the code works this way, it is frustrating to make modifications going forward. If you use GETCH, you need to compare the returned value to b'x' rather than just x.
The text was updated successfully, but these errors were encountered:
GETCH was used so that we wouldn't need a return after every token was scanned... Which is great for counting, but config screens may need more than a single keystroke, so we should use INPUT there instead.
Either all "keybinding" needs to be done using GETCH, or we should get rid of GETCH entirely.
While the code works this way, it is frustrating to make modifications going forward. If you use GETCH, you need to compare the returned value to b'x' rather than just x.
The text was updated successfully, but these errors were encountered: