diff --git a/source/games/duke/src/zz_anim.cpp b/source/games/duke/src/zz_anim.cpp index 40e8f1ae1..fdbe55909 100644 --- a/source/games/duke/src/zz_anim.cpp +++ b/source/games/duke/src/zz_anim.cpp @@ -256,6 +256,7 @@ void Anim_Init(void) int32_t Anim_Play(const char *fn) { +#if 0 dukeanim_t *anim = Anim_Find(fn); if (!anim) @@ -569,5 +570,8 @@ end_anim: tileDelete(TILE_ANIM); return !running; +#else + return false; +#endif } END_DUKE_NS diff --git a/source/games/duke/src/zz_screens.cpp b/source/games/duke/src/zz_screens.cpp index 5b660324b..86fe924e5 100644 --- a/source/games/duke/src/zz_screens.cpp +++ b/source/games/duke/src/zz_screens.cpp @@ -1069,8 +1069,14 @@ void G_DisplayExtraScreens(void) } } +void Logo(); void G_DisplayLogo(void) { + if (!isRR()) + { + Logo(); + return; + } int32_t soundanm = 0; //int32_t logoflags = G_GetLogoFlags();