mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 00:17:57 -05:00
configuration_shared: Break up tracker structs to respective classes
One less global variable.
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
|
||||
#include <QList>
|
||||
#include <QWidget>
|
||||
#include "yuzu/configuration/configuration_shared.h"
|
||||
|
||||
namespace Ui {
|
||||
class ConfigureSystem;
|
||||
@ -41,4 +42,9 @@ private:
|
||||
int region_index = 0;
|
||||
int time_zone_index = 0;
|
||||
int sound_index = 0;
|
||||
|
||||
struct Trackers {
|
||||
ConfigurationShared::CheckState use_rng_seed;
|
||||
ConfigurationShared::CheckState use_custom_rtc;
|
||||
} trackers;
|
||||
};
|
||||
|
Reference in New Issue
Block a user