Move motion blur hook to video_patches.cpp

This commit is contained in:
Hyper 2024-11-08 13:15:40 +00:00
parent 52bdde47d2
commit c0481c1f26
2 changed files with 5 additions and 5 deletions

View file

@ -69,8 +69,3 @@ PPC_FUNC(sub_82547DF0)
__imp__sub_82547DF0(ctx, base); __imp__sub_82547DF0(ctx, base);
} }
} }
bool MotionBlurMidAsmHook()
{
return Config::MotionBlur;
}

View file

@ -52,3 +52,8 @@ void CSDAspectRatioMidAsmHook(PPCRegister& f1, PPCRegister& f2)
f2.f64 = 720.0f / ((1280.0f / newAspectRatio) / 720.0f); f2.f64 = 720.0f / ((1280.0f / newAspectRatio) / 720.0f);
} }
} }
bool MotionBlurMidAsmHook()
{
return Config::MotionBlur;
}