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; } }