From 5802b0963fcd222eb2352525428789a857b23bda Mon Sep 17 00:00:00 2001 From: Greg King Date: Sun, 10 Sep 2017 12:27:57 -0400 Subject: [PATCH] Made include when we compile for the Atari 5200 console. atari5200.lib has some conio functions. --- include/conio.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/conio.h b/include/conio.h index 9eb68e565..4f414105c 100644 --- a/include/conio.h +++ b/include/conio.h @@ -63,6 +63,8 @@ # include #elif defined(__APPLE2__) # include +#elif defined(__ATARI5200__) +# include #elif defined(__ATARI__) # include #elif defined(__ATMOS__) @@ -225,6 +227,3 @@ void __fastcall__ cputhex16 (unsigned val); /* End of conio.h */ #endif - - - -- 2.39.5