2014-09-13 00:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 00:06:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace DefaultINI {
|
|
|
|
|
|
|
|
const char* glfw_config_file = R"(
|
|
|
|
[Controls]
|
|
|
|
pad_start =
|
|
|
|
pad_select =
|
|
|
|
pad_home =
|
|
|
|
pad_dup =
|
|
|
|
pad_ddown =
|
|
|
|
pad_dleft =
|
|
|
|
pad_dright =
|
|
|
|
pad_a =
|
|
|
|
pad_b =
|
|
|
|
pad_x =
|
|
|
|
pad_y =
|
|
|
|
pad_l =
|
2015-02-21 23:50:16 +00:00
|
|
|
pad_r =
|
|
|
|
pad_zl =
|
|
|
|
pad_zr =
|
2014-09-13 00:06:13 +00:00
|
|
|
pad_sup =
|
|
|
|
pad_sdown =
|
|
|
|
pad_sleft =
|
|
|
|
pad_sright =
|
2015-02-21 23:50:16 +00:00
|
|
|
pad_cup =
|
|
|
|
pad_cdown =
|
|
|
|
pad_cleft =
|
|
|
|
pad_cright =
|
2014-10-10 02:43:40 +00:00
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
[Core]
|
2015-01-06 02:25:57 +00:00
|
|
|
# The applied frameskip amount. Must be a power of two.
|
|
|
|
# 0 (default): No frameskip, 1: x2 frameskip, 2: x4 frameskip, 3: x8 frameskip, etc.
|
|
|
|
frame_skip =
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
[Renderer]
|
2015-05-03 19:34:48 +00:00
|
|
|
# Whether to use software or hardware rendering.
|
|
|
|
# 0 (default): Software, 1: Hardware
|
|
|
|
use_hw_renderer =
|
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
# The clear color for the renderer. What shows up on the sides of the bottom screen.
|
|
|
|
# Must be in range of 0.0-1.0. Defaults to 1.0 for all.
|
|
|
|
bg_red =
|
|
|
|
bg_blue =
|
|
|
|
bg_green =
|
|
|
|
|
2014-10-10 02:43:40 +00:00
|
|
|
[Data Storage]
|
2015-01-06 02:25:57 +00:00
|
|
|
# Whether to create a virtual SD card.
|
|
|
|
# 1 (default): Yes, 0: No
|
2014-10-10 02:43:40 +00:00
|
|
|
use_virtual_sd =
|
2014-10-27 21:18:28 +00:00
|
|
|
|
2015-01-31 23:11:51 +00:00
|
|
|
[System Region]
|
2015-01-06 02:25:57 +00:00
|
|
|
# The system region that Citra will use during emulation
|
|
|
|
# 0: Japan, 1: USA (default), 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan
|
|
|
|
region_value =
|
2015-01-31 23:11:51 +00:00
|
|
|
|
2014-10-27 21:18:28 +00:00
|
|
|
[Miscellaneous]
|
2015-01-06 02:25:57 +00:00
|
|
|
# A filter which removes logs below a certain logging level.
|
|
|
|
# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
|
|
|
|
log_filter = *:Info
|
2014-09-13 00:06:13 +00:00
|
|
|
)";
|
|
|
|
|
|
|
|
}
|