mirror of
https://github.com/Ultra-NX/UltraNX.git
synced 2025-12-13 18:33:55 +00:00
33 lines
711 B
YAML
33 lines
711 B
YAML
# MudRunner - American Wilds Edition 4.5
|
|
# BID: 028C5AB881F17582
|
|
|
|
DECLARATIONS:
|
|
-
|
|
type: variable
|
|
name: dr_gpu_target_max
|
|
value_type: float
|
|
default_value: 21.5
|
|
evaluate: 0.645 * FRAMETIME_TARGET
|
|
-
|
|
type: variable
|
|
name: dr_gpu_target_min
|
|
value_type: float
|
|
default_value: 19.5
|
|
evaluate: (0.645 * FRAMETIME_TARGET) - 2
|
|
MASTER_WRITE:
|
|
# Redirect DR frametime target
|
|
-
|
|
type: asm_a64
|
|
main_offset: 0xA30A0
|
|
instructions: [
|
|
[adrp, x9, $dr_gpu_target_max],
|
|
[ldr, s1, [x9, $dr_gpu_target_max]]
|
|
]
|
|
-
|
|
type: asm_a64
|
|
main_offset: 0xA30D8
|
|
instructions: [
|
|
[adrp, x9, $dr_gpu_target_min],
|
|
[ldr, s1, [x9, $dr_gpu_target_min]]
|
|
]
|