From 51eda921a1e7f0d1679ef5a7678289b8464b1786 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Sat, 22 Jan 2005 22:28:18 +0000 Subject: [PATCH] Version number on the main menu doesn't blink anymore when the selection changes. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1482 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 2 ++ sc2/src/sc2code/restart.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 334b21e5c..1f6d4610a 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,6 @@ Changes towards version 0.4: +- Version number in the main menu does not blink anymore when the + menu selection is changed (bug #672), from Nic - Massive amount of file restructuring and cleanups. Need many more. - SvdB - Added Intro and Ending slide shows (bug #46); use "-i pc" -Alex - Cross-fades in OpenGL mode with complex scalers fixed (bug #674) -Alex diff --git a/sc2/src/sc2code/restart.c b/sc2/src/sc2code/restart.c index 79b86c0cc..d4a1471dc 100644 --- a/sc2/src/sc2code/restart.c +++ b/sc2/src/sc2code/restart.c @@ -222,7 +222,9 @@ else if (InputState & DEVICE_EXIT) return (FALSE); } if (NewState != pMS->CurState) { + BatchGraphics (); DrawRestartMenu (pMS->CurState, NewState, pMS->CurFrame); + UnbatchGraphics (); pMS->CurState = NewState; } }