539bbd3c59
Apparently inline comments is not necessarily standard in the INI format, and our parser was erroneously parsing the comments as values.
60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// 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 =
|
|
pad_r =
|
|
pad_zl =
|
|
pad_zr =
|
|
pad_sup =
|
|
pad_sdown =
|
|
pad_sleft =
|
|
pad_sright =
|
|
pad_cup =
|
|
pad_cdown =
|
|
pad_cleft =
|
|
pad_cright =
|
|
|
|
[Core]
|
|
# The refresh rate for the GPU
|
|
# Defaults to 30
|
|
gpu_refresh_rate =
|
|
|
|
# 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 =
|
|
|
|
[Data Storage]
|
|
# Whether to create a virtual SD card.
|
|
# 1 (default): Yes, 0: No
|
|
use_virtual_sd =
|
|
|
|
[System Region]
|
|
# 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 =
|
|
|
|
[Miscellaneous]
|
|
# A filter which removes logs below a certain logging level.
|
|
# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
|
|
log_filter = *:Info
|
|
)";
|
|
|
|
}
|