diff options
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); |