2014-09-13 00:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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 02:43:40 +00:00
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
[Core]
|
2014-10-28 01:56:08 +00:00
|
|
|
cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental)
|
|
|
|
gpu_refresh_rate = ## 60 (default), 1024 or 2048 may work better on the FastInterpreter
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2014-10-10 02:43:40 +00:00
|
|
|
[Data Storage]
|
|
|
|
use_virtual_sd =
|
2014-09-13 00:06:13 +00:00
|
|
|
)";
|
|
|
|
|
|
|
|
}
|