Fix uninitialized variable

Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
Osyotr 2024-03-18 01:54:26 +03:00 committed by Alexander Borsuk
parent 7658dacca0
commit 01e44b4fab

View file

@ -102,7 +102,7 @@ protected:
std::string m_settingsDir;
/// Used in Android only to get corret GUI elements layout.
bool m_isTablet;
bool m_isTablet = false;
/// Returns last system call error as EError.
static EError ErrnoToError();