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.
35 lines
631 B
INI
35 lines
631 B
INI
# R7XP69 - Need for Speed: Nitro
|
|
|
|
[Core]
|
|
# Values set here will override the main dolphin settings.
|
|
|
|
[EmuState]
|
|
# The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
|
EmulationStateId = 4
|
|
EmulationIssues = Videos are messed up, skip them.
|
|
|
|
[OnLoad]
|
|
# Add memory patches to be loaded once on boot here.
|
|
|
|
[OnFrame]
|
|
# Add memory patches to be applied every frame here.
|
|
|
|
[ActionReplay]
|
|
# Add action replay cheats here.
|
|
|
|
[Video]
|
|
ProjectionHack = 0
|
|
PH_SZNear = 0
|
|
PH_SZFar = 0
|
|
PH_ExtraParam = 0
|
|
PH_ZNear =
|
|
PH_ZFar =
|
|
|
|
[Video_Settings]
|
|
SafeTextureCacheColorSamples = 512
|
|
|
|
[Video_Hacks]
|
|
EFBToTextureEnable = False
|
|
EFBCopyEnable = True
|
|
|