diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-29 19:28:04 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-29 19:28:04 +1100 |
commit | 9dc65f84b480d5869265428c1957c50bdee3a1f5 (patch) | |
tree | 5ca229ef8f07a7e134e8b57188e183dde7dc3ed0 /src/video/interface.h | |
parent | 44a1ea6542c812b173fb9685837c0b2fdc6a7c61 (diff) |
Display progress, still wip
Diffstat (limited to 'src/video/interface.h')
-rw-r--r-- | src/video/interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video/interface.h b/src/video/interface.h index e3244b0..048aa25 100644 --- a/src/video/interface.h +++ b/src/video/interface.h @@ -7,7 +7,7 @@ #include <stdlib.h> // Common procedure for taking in user input. -char UserInput(); +byte UserInput(); // Initialization procedure for the terminal void TerminalInit(); @@ -16,4 +16,4 @@ void TerminalInit(); void TerminalClose(); // Deliver an Apple ASCII character to the terminal. -void TerminalInput(char n);
\ No newline at end of file +void TerminalInput(byte n); |