From f48cc8aaf4fc4d62c39498e9c533132ca654848a Mon Sep 17 00:00:00 2001 From: Crementif <26669564+Crementif@users.noreply.github.com> Date: Mon, 4 May 2020 16:47:38 +0200 Subject: [PATCH] [Fast Racing Neo] Add static FPS mod Doesn't seem to have any bugs, so that's cool! Feels really smooth to play now! --- .../patch_staticFPS.asm | 6 ++ Mods/FastRacingNeo_StaticFPS/rules.txt | 57 +++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 Mods/FastRacingNeo_StaticFPS/patch_staticFPS.asm create mode 100644 Mods/FastRacingNeo_StaticFPS/rules.txt diff --git a/Mods/FastRacingNeo_StaticFPS/patch_staticFPS.asm b/Mods/FastRacingNeo_StaticFPS/patch_staticFPS.asm new file mode 100644 index 00000000..0cad8c7d --- /dev/null +++ b/Mods/FastRacingNeo_StaticFPS/patch_staticFPS.asm @@ -0,0 +1,6 @@ +[StaticFPS_v65] +moduleMatches = 0xfab25e0c + +0x1000AE10 = .float $targetFPS # Game Speed +0x1000008C = .float 60/$targetFPS # Animated Objects and Effects Speed +0x10000090 = .double $targetFPS # GUI Transition Speed diff --git a/Mods/FastRacingNeo_StaticFPS/rules.txt b/Mods/FastRacingNeo_StaticFPS/rules.txt new file mode 100644 index 00000000..3a9bc854 --- /dev/null +++ b/Mods/FastRacingNeo_StaticFPS/rules.txt @@ -0,0 +1,57 @@ +[Definition] +titleIds = 000500001012F000,00050000101D6000,00050000101E4100,00050000101FED00 +name = Static FPS +path = "FAST Racing NEO/Mods/Static FPS" +description = Changes the framerate the game runs at. If you are below the chosen framerate you'll notice some slowdown. Only works with the latest game update! +version = 4 + +[Preset] +name = Static 60FPS (Default) +$targetFPS:int = 60 + +[Preset] +name = Static 30FPS +$targetFPS:int = 30 + +[Preset] +name= Static 244FPS +$targetFPS:int = 244 + +[Preset] +name= Static 165FPS +$targetFPS:int = 165 + +[Preset] +name = Static 144FPS +$targetFPS:int = 144 + +[Preset] +name = Static 120FPS +$targetFPS:int = 120 + +[Preset] +name = Static 100FPS +$targetFPS:int = 100 + +[Preset] +name = Static 85FPS +$targetFPS:int = 85 + +[Preset] +name = Static 75FPS +$targetFPS:int = 75 + +[Preset] +name = Static 72FPS +$targetFPS:int = 72 + +[Preset] +name = Static 40FPS +$targetFPS:int = 40 + +[Preset] +name = 20FPS +$targetFPS:int = 20 + +[Control] +vsyncFrequency = $targetFPS \ No newline at end of file