diff options
| author | 2023-06-21 17:06:10 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:55 -0400 | |
| commit | 52cc7b438bbaccb440382d0fd38d2d0805907814 (patch) | |
| tree | f116d0f49b524231729e22eb9e987a4fd7b746fd | |
| parent | shared_translation: Deobfuscate auto time zone (diff) | |
| download | yuzu-52cc7b438bbaccb440382d0fd38d2d0805907814.tar.gz yuzu-52cc7b438bbaccb440382d0fd38d2d0805907814.tar.xz yuzu-52cc7b438bbaccb440382d0fd38d2d0805907814.zip | |
settings_common: Remove unncessary enum spec
| -rw-r--r-- | src/common/settings_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/settings_common.h b/src/common/settings_common.h index 6b717deb1..669d32204 100644 --- a/src/common/settings_common.h +++ b/src/common/settings_common.h | |||
| @@ -80,8 +80,8 @@ public: | |||
| 80 | */ | 80 | */ |
| 81 | class BasicSetting { | 81 | class BasicSetting { |
| 82 | protected: | 82 | protected: |
| 83 | explicit BasicSetting(Linkage& linkage, const std::string& name, enum Category category_, | 83 | explicit BasicSetting(Linkage& linkage, const std::string& name, Category category_, bool save_, |
| 84 | bool save_, bool runtime_modifiable_, u32 specialization, | 84 | bool runtime_modifiable_, u32 specialization, |
| 85 | BasicSetting* other_setting); | 85 | BasicSetting* other_setting); |
| 86 | 86 | ||
| 87 | public: | 87 | public: |