summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2015-03-07 20:52:18 -0500
committerGravatar bunnei2015-03-07 20:52:18 -0500
commitc7b3331b1c823440d5ca1a9ae31aa3be68a0140a (patch)
tree62175e081049ebb8f2dd7eed5f112335c9323a43 /src
parentMerge pull request #638 from bunnei/osx-fix (diff)
parentdefault_ini.h: Put comments on their own lines (diff)
downloadyuzu-c7b3331b1c823440d5ca1a9ae31aa3be68a0140a.tar.gz
yuzu-c7b3331b1c823440d5ca1a9ae31aa3be68a0140a.tar.xz
yuzu-c7b3331b1c823440d5ca1a9ae31aa3be68a0140a.zip
Merge pull request #640 from archshift/ini
default_ini.h: Put comments on their own lines
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}