Resolve GCC Warnings

This commit is contained in:
Minty-Meeo
2022-05-01 03:12:28 -05:00
parent e50e45f400
commit 69e32dea52
10 changed files with 40 additions and 29 deletions

View File

@ -14,5 +14,7 @@ public:
void Log(Common::Log::LogLevel level, const char* text) override;
private:
[[maybe_unused]] bool m_use_color = false;
#if !defined _WIN32 && !defined ANDROID
bool m_use_color = false;
#endif
};