diff options
Diffstat (limited to 'Game/Code/Menu')
-rw-r--r-- | Game/Code/Menu/UDisplay.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Game/Code/Menu/UDisplay.pas b/Game/Code/Menu/UDisplay.pas index 70e678fb..29450c1d 100644 --- a/Game/Code/Menu/UDisplay.pas +++ b/Game/Code/Menu/UDisplay.pas @@ -203,7 +203,7 @@ begin end;
glViewPort((S-1) * ScreenW div Screens, 0, ScreenW div Screens, ScreenH);
// blackscreen-hack
- if not BlackScreen then
+ if (not BlackScreen) AND (S = 1) then
NextScreen.onShow;
lastTime:=GetTickCount;
if (S=2) or (Screens = 1) then
@@ -252,7 +252,7 @@ begin end
else
// blackscreen hack
- if not BlackScreen then
+ if (not BlackScreen) AND (S = 1) then
NextScreen.OnShow;
|