2014-09-12 21:06:13 -03:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 02:38:14 -03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-12 21:06:13 -03: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_r =
|
|
|
|
pad_l =
|
|
|
|
pad_sup =
|
|
|
|
pad_sdown =
|
|
|
|
pad_sleft =
|
|
|
|
pad_sright =
|
2014-10-09 23:43:40 -03:00
|
|
|
|
2014-10-25 16:54:44 -03:00
|
|
|
[Core]
|
2014-10-27 22:56:08 -03:00
|
|
|
cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental)
|
2014-11-09 03:26:03 -03:00
|
|
|
gpu_refresh_rate = ## 60 (default)
|
2014-10-25 16:54:44 -03:00
|
|
|
|
2014-10-09 23:43:40 -03:00
|
|
|
[Data Storage]
|
|
|
|
use_virtual_sd =
|
2014-10-27 18:18:28 -03:00
|
|
|
|
|
|
|
[Miscellaneous]
|
2014-12-06 19:00:08 -03:00
|
|
|
log_filter = *:Info ## Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
|
2014-09-12 21:06:13 -03:00
|
|
|
)";
|
|
|
|
|
|
|
|
}
|