mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-10 12:59:58 +00:00
ca22ee3239
Services: Stub some functions
45 lines
780 B
C++
45 lines
780 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Settings {
|
|
|
|
struct Values {
|
|
// Controls
|
|
int pad_a_key;
|
|
int pad_b_key;
|
|
int pad_x_key;
|
|
int pad_y_key;
|
|
int pad_l_key;
|
|
int pad_r_key;
|
|
int pad_start_key;
|
|
int pad_select_key;
|
|
int pad_home_key;
|
|
int pad_dup_key;
|
|
int pad_ddown_key;
|
|
int pad_dleft_key;
|
|
int pad_dright_key;
|
|
int pad_sup_key;
|
|
int pad_sdown_key;
|
|
int pad_sleft_key;
|
|
int pad_sright_key;
|
|
|
|
// Core
|
|
int gpu_refresh_rate;
|
|
int frame_skip;
|
|
|
|
// Data Storage
|
|
bool use_virtual_sd;
|
|
|
|
// System Region
|
|
int region_value;
|
|
|
|
std::string log_filter;
|
|
} extern values;
|
|
|
|
}
|