From eb175d4f4302941c9643820b7fc0d96bb06a4b42 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 6 Jan 2007 04:10:51 +0000 Subject: [PATCH] - Removed a Sleep I had accidentally left in ST_Heretic_Progress(). SVN r439 (trunk) --- src/win32/st_start.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/win32/st_start.cpp b/src/win32/st_start.cpp index 376940126..23f4f33d1 100644 --- a/src/win32/st_start.cpp +++ b/src/win32/st_start.cpp @@ -721,7 +721,7 @@ static void ST_Heretic_Progress() { CurPos++; notch_pos = (CurPos * ThermWidth) / MaxPos; - if (notch_pos != NotchPos && (!(notch_pos & 7) || CurPos == MaxPos)) + if (notch_pos != NotchPos && !(notch_pos & 3)) { // Time to draw another notch. int left = NotchPos + ThermX; int top = ThermY; @@ -730,7 +730,6 @@ static void ST_Heretic_Progress() ST_Util_ClearBlock (ST_Util_BitsForBitmap(StartupBitmap) + left + top * 320, THERM_COLOR, right - left, bottom - top, 320); ST_Util_InvalidateRect (StartupScreen, StartupBitmap, left*2, top, right*2, bottom); NotchPos = notch_pos; - Sleep (20); } } I_GetEvent ();