configuration_shared: Break up tracker structs to respective classes
One less global variable.
This commit is contained in:
parent
e483ed21eb
commit
0d462f5608
12 changed files with 58 additions and 49 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue