mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Disable intro fade effects for opengl mode
This commit is contained in:
parent
27a3945583
commit
0f874f6979
1 changed files with 12 additions and 6 deletions
|
@ -3200,18 +3200,21 @@ void DoTitle()
|
|||
|
||||
videoSetViewableArea(0, 0, xdim - 1, ydim - 1);
|
||||
|
||||
BlackOut();
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
BlackOut();
|
||||
|
||||
overwritesprite(0, 0, kPublisherLogo, 0, 2, kPalNormal);
|
||||
videoNextPage();
|
||||
|
||||
FadeIn();
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
FadeIn();
|
||||
|
||||
ClearAllKeys();
|
||||
|
||||
WaitAnyKey(2);
|
||||
|
||||
FadeOut(0);
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
FadeOut(0);
|
||||
|
||||
SetOverscan(BASEPAL);
|
||||
|
||||
|
@ -3220,17 +3223,20 @@ void DoTitle()
|
|||
overwritesprite(0, 0, nScreenTile, 0, 2, kPalNormal);
|
||||
videoNextPage();
|
||||
|
||||
FadeIn();
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
FadeIn();
|
||||
PlayLogoSound();
|
||||
|
||||
WaitAnyKey(2);
|
||||
|
||||
FadeOut(0);
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
FadeOut(0);
|
||||
ClearAllKeys();
|
||||
|
||||
PlayMovie("book.mov");
|
||||
|
||||
FadeOut(0);
|
||||
if (videoGetRenderMode() == REND_CLASSIC)
|
||||
FadeOut(0);
|
||||
|
||||
SetOverscan(BASEPAL);
|
||||
GrabPalette();
|
||||
|
|
Loading…
Reference in a new issue