aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 1d9a8dc01..f9a13e0af 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2794,7 +2794,7 @@ static void go_sleep(long ms)
#ifdef WIN32
/* Windows offers a millisecond sleep */
Sleep(ms);
-#elif defined(__MSDOS__)
+#elif defined(MSDOS)
delay(ms);
#else
/* Other systems must use select() for this */