diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 08:21:14 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 08:21:14 +1100 |
commit | 9ecaf2877f93664497110edf256fbc7825cd30f9 (patch) | |
tree | 959929f9d3b9a23a7a788d64f72fac367505e403 /src/video/interface.h | |
parent | 88e6422ec31938fbff7b4fb9c5ddf63fc9f14a09 (diff) |
stuck at number parsing inf. loop error
Diffstat (limited to 'src/video/interface.h')
-rw-r--r-- | src/video/interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video/interface.h b/src/video/interface.h index 2443b62..dc074b2 100644 --- a/src/video/interface.h +++ b/src/video/interface.h @@ -13,10 +13,10 @@ byte UserInput(); void PrintInfo(); // Initialization procedure for the terminal -void TerminalInit(); +void DisplayInit(); // Exit procedure for the terminal. -void TerminalClose(); +void DisplayClose(); // Deliver an Apple ASCII character to the terminal. -void TerminalInput(byte n); +void DisplayInput(byte n); |