From 7a3ec6c61e39f39984eb0e11327f0204696b0a94 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 24 Feb 2008 00:55:07 +0000 Subject: Fix leftover "junk" displayed on the screen on the initial melt when using -warp. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1089 --- src/i_video.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i_video.c b/src/i_video.c index b8ba1758..8251234e 100644 --- a/src/i_video.c +++ b/src/i_video.c @@ -1555,16 +1555,16 @@ void I_InitGraphics(void) { screens[0] = (unsigned char *) Z_Malloc (SCREENWIDTH * SCREENHEIGHT, PU_STATIC, NULL); - - // Clear the screen to black. - - memset(screens[0], 0, SCREENWIDTH * SCREENHEIGHT); } // "Loading from disk" icon LoadDiskImage(); + // Clear the screen to black. + + memset(screens[0], 0, SCREENWIDTH * SCREENHEIGHT); + // We need SDL to give us translated versions of keys as well SDL_EnableUNICODE(1); -- cgit v1.2.3