shithub: duke3d

Download patch

ref: fd04daea8217e59413c225899355d8c446c898e3
parent: 6086876239945c2b232b2af305c6dbee2a34b03c
author: darealshinji <djcj@gmx.de>
date: Wed Apr 29 03:58:31 EDT 2015

Console: don't wait for key input on exits

--- a/Game/src/global.c
+++ b/Game/src/global.c
@@ -518,10 +518,10 @@
    vprintf(error, argptr);
    va_end (argptr);
 
-   printf("Press any key to continue...\n");
+   //printf("Press any key to continue...\n");
 
 	// FIX_00043: Nicer exit on error. Ask the user to hit a key on exits and error exits.
-   getch();
+   //getch();
 
    exit (errorType);
 }