mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
anm adjustment
This commit is contained in:
parent
60cb8281cd
commit
8a06a09d05
2 changed files with 10 additions and 0 deletions
|
@ -256,6 +256,7 @@ void Anim_Init(void)
|
||||||
|
|
||||||
int32_t Anim_Play(const char *fn)
|
int32_t Anim_Play(const char *fn)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
dukeanim_t *anim = Anim_Find(fn);
|
dukeanim_t *anim = Anim_Find(fn);
|
||||||
|
|
||||||
if (!anim)
|
if (!anim)
|
||||||
|
@ -569,5 +570,8 @@ end_anim:
|
||||||
tileDelete(TILE_ANIM);
|
tileDelete(TILE_ANIM);
|
||||||
|
|
||||||
return !running;
|
return !running;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
END_DUKE_NS
|
END_DUKE_NS
|
||||||
|
|
|
@ -1069,8 +1069,14 @@ void G_DisplayExtraScreens(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Logo();
|
||||||
void G_DisplayLogo(void)
|
void G_DisplayLogo(void)
|
||||||
{
|
{
|
||||||
|
if (!isRR())
|
||||||
|
{
|
||||||
|
Logo();
|
||||||
|
return;
|
||||||
|
}
|
||||||
int32_t soundanm = 0;
|
int32_t soundanm = 0;
|
||||||
//int32_t logoflags = G_GetLogoFlags();
|
//int32_t logoflags = G_GetLogoFlags();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue