aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra/default_ini.h
blob: b522dce5cfc496bbf841be6d4db56cd8d48e03d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// 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_r =
pad_l =
pad_sup =
pad_sdown =
pad_sleft =
pad_sright =

[Core]
cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental)
gpu_refresh_rate = ## 30 (default)

[Data Storage]
use_virtual_sd =

[Miscellaneous]
log_filter = *:Info  ## Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
)";

}