summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar archshift2015-01-05 18:25:57 -0800
committerGravatar archshift2015-03-07 17:28:29 -0800
commit539bbd3c596167047b401680c29edde627dee696 (patch)
tree62175e081049ebb8f2dd7eed5f112335c9323a43 /src
parentMerge pull request #638 from bunnei/osx-fix (diff)
downloadyuzu-539bbd3c596167047b401680c29edde627dee696.tar.gz
yuzu-539bbd3c596167047b401680c29edde627dee696.tar.xz
yuzu-539bbd3c596167047b401680c29edde627dee696.zip
default_ini.h: Put comments on their own lines
Apparently inline comments is not necessarily standard in the INI format, and our parser was erroneously parsing the comments as values.
Diffstat (limited to 'src')
-rw-r--r--src/citra/default_ini.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/citra/default_ini.h b/src/citra/default_ini.h
index 798ff6e84..fc02a3ceb 100644
--- a/src/citra/default_ini.h
+++ b/src/citra/default_ini.h
@@ -33,17 +33,28 @@ pad_cleft =
33pad_cright = 33pad_cright =
34 34
35[Core] 35[Core]
36gpu_refresh_rate = ## 30 (default) 36# The refresh rate for the GPU
37frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc. 37# Defaults to 30
38gpu_refresh_rate =
39
40# The applied frameskip amount. Must be a power of two.
41# 0 (default): No frameskip, 1: x2 frameskip, 2: x4 frameskip, 3: x8 frameskip, etc.
42frame_skip =
38 43
39[Data Storage] 44[Data Storage]
45# Whether to create a virtual SD card.
46# 1 (default): Yes, 0: No
40use_virtual_sd = 47use_virtual_sd =
41 48
42[System Region] 49[System Region]
43region_value = ## 0 : Japan, 1 : Usa (default), 2 : Europe, 3 : Australia, 4 : China, 5 : Korea, 6 : Taiwan. 50# The system region that Citra will use during emulation
51# 0: Japan, 1: USA (default), 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan
52region_value =
44 53
45[Miscellaneous] 54[Miscellaneous]
46log_filter = *:Info ## Examples: *:Debug Kernel.SVC:Trace Service.*:Critical 55# A filter which removes logs below a certain logging level.
56# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
57log_filter = *:Info
47)"; 58)";
48 59
49} 60}