Skip to content

Commit 237bc11

Browse files
committed
Fix main menu chevron animation freezing when resizing
1 parent 701d63a commit 237bc11

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

MarathonRecomp/patches/aspect_ratio_patches.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,7 @@ PPC_FUNC(sub_828C8F60)
341341
if ((g_sceneModifier->Flags & CSD_MODIFIER_ULTRAWIDE_ONLY) != 0 && g_aspectRatio <= WIDE_ASPECT_RATIO)
342342
g_sceneModifier->Flags &= (~g_sceneModifier->Flags) | CSD_MODIFIER_ULTRAWIDE_ONLY;
343343

344-
if ((g_sceneModifier->Flags & CSD_SCENE_DISABLE_MOTION) != 0)
345-
pScene->FPS = 0;
344+
pScene->FPS = ((g_sceneModifier->Flags & CSD_SCENE_DISABLE_MOTION) != 0) ? 0 : 60;
346345

347346
if (g_aspectRatio > WIDE_ASPECT_RATIO)
348347
{

0 commit comments

Comments
 (0)