From fdfff2b9e72c8a1d3975277cad80b9d3afec032f Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 7 Jun 2009 15:15:40 +0000 Subject: Remove call to setbuf. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1566 --- src/d_main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/d_main.c') diff --git a/src/d_main.c b/src/d_main.c index 849897fe..29a366a1 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -878,8 +878,7 @@ void D_DoomMain (void) I_Error("Game mode indeterminate. No IWAD file was found. Try\n" "specifying one with the '-iwad' command line parameter.\n"); } - - setbuf (stdout, NULL); + modifiedgame = false; //! -- cgit v1.2.3 From d4863b4c4ac47766b5fd3b8b0949be7af792e3d0 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Fri, 12 Jun 2009 19:07:55 +0000 Subject: On Windows CE systems without a keyboard, patch the default settings to use hardware keys. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1600 --- src/d_main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/d_main.c') diff --git a/src/d_main.c b/src/d_main.c index 29a366a1..c59a8fb7 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -974,6 +974,7 @@ void D_DoomMain (void) V_Init (); printf (DEH_String("M_LoadDefaults: Load system defaults.\n")); + M_ApplyPlatformDefaults(); M_LoadDefaults (); // load before initing other systems printf (DEH_String("W_Init: Init WADfiles.\n")); -- cgit v1.2.3