mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 03:00:38 +00:00
Make stopping of all sounds after completion of LOGO.ANM conditional on the newly introduced (LOGO_FLAGS & LOGO_STOPANIMSOUNDS). Modifies r3217.
git-svn-id: https://svn.eduke32.com/eduke32@3545 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e2701c9a5a
commit
27fa5e72f7
2 changed files with 7 additions and 3 deletions
|
@ -9355,8 +9355,11 @@ static void G_DisplayLogo(void)
|
||||||
clearallviews(0L);
|
clearallviews(0L);
|
||||||
nextpage();
|
nextpage();
|
||||||
|
|
||||||
FX_StopAllSounds();
|
if (logoflags & LOGO_STOPANIMSOUNDS)
|
||||||
S_ClearSoundLocks();
|
{
|
||||||
|
FX_StopAllSounds();
|
||||||
|
S_ClearSoundLocks();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (logoflags & LOGO_PLAYMUSIC)
|
if (logoflags & LOGO_PLAYMUSIC)
|
||||||
|
|
|
@ -58,7 +58,8 @@ enum LogoFlags_t {
|
||||||
LOGO_THREEDEE = 0x00000040,
|
LOGO_THREEDEE = 0x00000040,
|
||||||
LOGO_PLUTOPAKSPRITE = 0x00000080,
|
LOGO_PLUTOPAKSPRITE = 0x00000080,
|
||||||
LOGO_SHAREWARESCREENS = 0x00000100,
|
LOGO_SHAREWARESCREENS = 0x00000100,
|
||||||
LOGO_TENSCREEN = 0x00000200
|
LOGO_TENSCREEN = 0x00000200,
|
||||||
|
LOGO_STOPANIMSOUNDS = 0x00000400
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum basepal_ {
|
typedef enum basepal_ {
|
||||||
|
|
Loading…
Reference in a new issue