commit 7a3ec6c61e39f39984eb0e11327f0204696b0a94
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Sun Feb 24 00:55:07 2008 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Sun Feb 24 00:55:07 2008 +0000
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);