We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701d63a commit 237bc11Copy full SHA for 237bc11
1 file changed
MarathonRecomp/patches/aspect_ratio_patches.cpp
@@ -341,8 +341,7 @@ PPC_FUNC(sub_828C8F60)
341
if ((g_sceneModifier->Flags & CSD_MODIFIER_ULTRAWIDE_ONLY) != 0 && g_aspectRatio <= WIDE_ASPECT_RATIO)
342
g_sceneModifier->Flags &= (~g_sceneModifier->Flags) | CSD_MODIFIER_ULTRAWIDE_ONLY;
343
344
- if ((g_sceneModifier->Flags & CSD_SCENE_DISABLE_MOTION) != 0)
345
- pScene->FPS = 0;
+ pScene->FPS = ((g_sceneModifier->Flags & CSD_SCENE_DISABLE_MOTION) != 0) ? 0 : 60;
346
347
if (g_aspectRatio > WIDE_ASPECT_RATIO)
348
{
0 commit comments