summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index 4034b795a..a61f25cbe 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -6,7 +6,8 @@
6 6
7#include <string> 7#include <string>
8#include <array> 8#include <array>
9#include <common/file_util.h> 9
10#include "common/common_types.h"
10 11
11namespace Settings { 12namespace Settings {
12 13
@@ -58,6 +59,7 @@ struct Values {
58 // Renderer 59 // Renderer
59 bool use_hw_renderer; 60 bool use_hw_renderer;
60 bool use_shader_jit; 61 bool use_shader_jit;
62 bool use_scaled_resolution;
61 63
62 float bg_red; 64 float bg_red;
63 float bg_green; 65 float bg_green;
@@ -65,9 +67,14 @@ struct Values {
65 67
66 std::string log_filter; 68 std::string log_filter;
67 69
70 // Audio
71 std::string sink_id;
72
68 // Debugging 73 // Debugging
69 bool use_gdbstub; 74 bool use_gdbstub;
70 u16 gdbstub_port; 75 u16 gdbstub_port;
71} extern values; 76} extern values;
72 77
78void Apply();
79
73} 80}