mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
e5f4586356
Add a simple Python script that does a basic normalization on the game INI files and run it across all the files we have. This normalizes the sections, their order and comments, and the whitespace within them. It also removes the sections Video_Hardware, Gecko, and Wii, which should not be in the game INI files we ship by default.
43 lines
844 B
INI
43 lines
844 B
INI
# SMNP01 - New SUPER MARIO BROS. Wii
|
|
|
|
[Core]
|
|
# Values set here will override the main dolphin settings.
|
|
|
|
[EmuState]
|
|
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
|
EmulationIssues = Enable EFB to RAM for the coins to spin (it will cause a big slowdown).
|
|
EmulationStateId = 4
|
|
|
|
[OnLoad]
|
|
# Add memory patches to be loaded once on boot here.
|
|
|
|
[OnFrame]
|
|
# Add memory patches to be applied every frame here.
|
|
+$Speed hack
|
|
0x801D5B10:dword:0x60000000
|
|
0x801D5B14:dword:0x60000000
|
|
|
|
[ActionReplay]
|
|
# Add action replay cheats here.
|
|
$98 lives (Mario, keep hat)
|
|
04355190 00000062
|
|
$99 lives (Mario, no hat)
|
|
04355190 00000062
|
|
$Freeze timer
|
|
040E3AB8 3C0001F4
|
|
|
|
[Video]
|
|
ProjectionHack = 0
|
|
PH_SZNear = 0
|
|
PH_SZFar = 0
|
|
PH_ExtraParam = 0
|
|
PH_ZNear =
|
|
PH_ZFar =
|
|
|
|
[Video_Settings]
|
|
SafeTextureCacheColorSamples = 512
|
|
|
|
[Video_Hacks]
|
|
DlistCachingEnable = False
|
|
|