We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 701d63a commit 1b06013Copy full SHA for 1b06013
MarathonRecomp/api/Sonicteam/MyPE/CManageParticle.h
@@ -9,7 +9,6 @@
9
#include <Sonicteam/SoX/LinkNode.h>
10
#include <stdx/list.h>
11
12
-
13
namespace Sonicteam::MyPE
14
{
15
class ManageParticleTask;
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