From d2a4a4d553370643ffbc336e09d320a025fba228 Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 24 Nov 2024 21:12:39 -0300 Subject: Option for Team faces in cutscenes --- src/engine/fox_demo.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/engine') diff --git a/src/engine/fox_demo.c b/src/engine/fox_demo.c index 67cce8ba..86ae27de 100644 --- a/src/engine/fox_demo.c +++ b/src/engine/fox_demo.c @@ -100,8 +100,10 @@ void func_demo_80048CC4(ActorCutscene* this, s32 index) { } else { this->iwork[11] = 1; - // @port: Setup team faces - this->iwork[14] = index + 2; + if (CVarGetInteger("gTeamFaces", 1) == 1) { + // @port: Setup team faces + this->iwork[14] = index + 2; + } AUDIO_PLAY_SFX(NA_SE_ARWING_ENGINE_FG, this->sfxSource, 4); } -- cgit v1.2.3