2014-09-13 02:06:13 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 02:06:13 +02: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-10 04:43:40 +02:00
|
|
|
|
2014-10-25 21:54:44 +02:00
|
|
|
[Core]
|
2015-01-03 04:33:53 +01:00
|
|
|
cpu_core = ## 0: Interpreter (default), 1: OldInterpreter (may work better, soon to be deprecated)
|
2014-12-27 03:32:48 +01:00
|
|
|
gpu_refresh_rate = ## 30 (default)
|
2014-12-27 03:40:17 +01:00
|
|
|
frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc.
|
2014-10-25 21:54:44 +02:00
|
|
|
|
2014-10-10 04:43:40 +02:00
|
|
|
[Data Storage]
|
|
|
|
use_virtual_sd =
|
2014-10-27 22:18:28 +01:00
|
|
|
|
|
|
|
[Miscellaneous]
|
2014-12-06 23:00:08 +01:00
|
|
|
log_filter = *:Info ## Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
|
2014-09-13 02:06:13 +02:00
|
|
|
)";
|
|
|
|
|
|
|
|
}
|