From 50415dcf52f18344bfcf14c16f7eaafe35d05205 Mon Sep 17 00:00:00 2001 From: turbocat Date: Thu, 18 Feb 2021 21:15:28 +0000 Subject: [PATCH] Wolfenstein 3D: - Fixed too long delay in the menu. git-svn-id: svn://kolibrios.org@8597 a494cfbc-eb01-0410-851d-a64ba20cac60 --- contrib/games/wolf3d/wl_menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/games/wolf3d/wl_menu.cpp b/contrib/games/wolf3d/wl_menu.cpp index 5365fc1527..d3c129143e 100755 --- a/contrib/games/wolf3d/wl_menu.cpp +++ b/contrib/games/wolf3d/wl_menu.cpp @@ -3484,7 +3484,7 @@ DrawHalfStep (int x, int y) VWB_DrawPic (x, y, C_CURSOR1PIC); VW_UpdateScreen (); SD_PlaySound (MOVEGUN1SND); - SDL_Delay (8 * 100 / 7); + SDL_Delay(1); //Fixed too long delay in the menu }