UltraNX/SaltySD/plugins/FPSLocker/patches/01004D300C5AE000/D9BA7DB72FFAFECD.yaml

211 lines
4.3 KiB
YAML
Raw Normal View History

2023-10-25 11:42:26 +00:00
# Kirby and the Forgotten Land 1.0.0
# BID: D9BA7DB72FFAFECD
# Thanks to Hazerou for finding interval offsets
# Game speed is tied to framerate, no proper support for anything between 30 and 60 FPS
2023-10-25 11:42:26 +00:00
unsafeCheck: false
2023-10-25 11:42:26 +00:00
MASTER_WRITE:
# Remove double buffer
-
type: bytes
main_offset: 0x745E94
value_type: uint32
value: 0x52800069
# Fix helper functions to not corrupt stack
-
type: bytes
main_offset: 0x745F70
value_type: uint32
value: 0x52800062
-
type: bytes
main_offset: 0x75908C
value_type: uint32
value: 0x52800062
-
type: bytes
main_offset: 0x675198
value_type: uint32
value:
- 0xD10143FF
- 0xA90257F6
- 0xA9034FF4
- 0xA9047BFD
- 0x910103FD
-
type: bytes
main_offset: 0x6751EC
value_type: uint32
value: 0x52800062
-
type: bytes
main_offset: 0x675210
value_type: uint32
value:
- 0xA9447BFD
- 0xA9434FF4
- 0xA94257F6
- 0x910143FF
-
type: bytes
main_offset: 0x74A510
value_type: uint32
value: 0x52800062
-
type: bytes
main_offset: 0x7590F8
value_type: uint32
value: 0x52800062
-
type: bytes
main_offset: 0x7BDCD4
value_type: uint32
value: 0x52800062
# Block transparency in some 2D elements to avoid issue with flickering at triple buffer
-
type: bytes
main_offset: 0x6A58C8
value_type: uint32
value:
- 0xD2802049
- 0xB948414A
- 0x91208114
- 0xD37DF14C
- 0xF9000289
2023-10-25 11:42:26 +00:00
15FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 4
# Dynamic Resolution GPU Frametiming Max / Min (Max = 1.95 * (30/FPS), Min = 1.7 * (30/FPS))
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [3.9, 3.4]
2023-10-25 11:42:26 +00:00
-
type: block
what: timing
20FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 3
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [2.925, 2.55]
2023-10-25 11:42:26 +00:00
-
type: block
what: timing
25FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 2
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [2.34, 2.04]
2023-10-25 11:42:26 +00:00
30FPS:
# Interval (default value)
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 2
# Dynamic Resolution GPU Frametiming (default values)
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.95, 1.7]
2023-10-25 11:42:26 +00:00
35FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.67, 1.45]
2023-10-25 11:42:26 +00:00
40FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.4625, 1.275]
2023-10-25 11:42:26 +00:00
45FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.3, 1.13]
2023-10-25 11:42:26 +00:00
50FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.17, 1.02]
2023-10-25 11:42:26 +00:00
55FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [1.06, 0.92]
2023-10-25 11:42:26 +00:00
60FPS:
# Interval
-
type: write
address: [MAIN, 0xA72628, 0x50]
value_type: int32
2023-12-08 22:57:58 +00:00
value: 1
# Dynamic Resolution GPU Frametiming
-
type: write
address: [MAIN, 0xA726B0, 0x140, 0x1B0, 0x20, 0x34]
value_type: float
value: [0.975, 0.85]