summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configuration_shared.h
diff options
context:
space:
mode:
authorlat9nq <lat9nq@virginia.edu>2020-07-14 13:55:47 -0400
committerlat9nq <lat9nq@virginia.edu>2020-07-19 13:26:55 -0400
commit0d462f560840f0ad584f1a24b02cd6c03cc4f5c2 (patch)
treef73fd1cba75bc2180a6c85dad6b5c393af9e4336 /src/yuzu/configuration/configuration_shared.h
parente483ed21eb7b28ccc68689b7666cb39357592152 (diff)
configuration_shared: Break up tracker structs to respective classes
One less global variable.
Diffstat (limited to 'src/yuzu/configuration/configuration_shared.h')
-rw-r--r--src/yuzu/configuration/configuration_shared.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/yuzu/configuration/configuration_shared.h b/src/yuzu/configuration/configuration_shared.h
index d3e86c3cf..4cea7406f 100644
--- a/src/yuzu/configuration/configuration_shared.h
+++ b/src/yuzu/configuration/configuration_shared.h
@@ -22,25 +22,6 @@ enum CheckState {
Count,
};
-struct Trackers {
- CheckState use_frame_limit;
- CheckState use_multi_core;
-
- CheckState enable_audio_stretching;
-
- CheckState use_disk_shader_cache;
- CheckState use_asynchronous_gpu_emulation;
-
- CheckState use_vsync;
- CheckState use_assembly_shaders;
- CheckState use_asynchronous_shaders;
- CheckState use_fast_gpu_time;
- CheckState force_30fps_mode;
-
- CheckState use_rng_seed;
- CheckState use_custom_rtc;
-} extern trackers;
-
// Global-aware apply and set functions
void ApplyPerGameSetting(Settings::Setting<bool>* setting, const QCheckBox* checkbox,