diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2022-11-25 13:02:53 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2022-11-25 13:02:53 +0000 |
commit | 74b6055475a51876ad5a88ef1722e0a6e1d6d109 (patch) | |
tree | 7e1523203b83623fe5b7dc9de6f72cb5f45ef81f /src/yuzu/main.cpp | |
parent | 7c69a0c4e5258c9b30757351915332cd8e9c531e (diff) |
"Merge Tagged PR 8829"mainline-0-1251
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 18802e9d49..bedb4c7e28 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -237,6 +237,7 @@ static void LogRuntimes() { LOG_INFO(Frontend, "Unable to inspect {}", runtime_dll_name); } #endif + LOG_INFO(Frontend, "Qt Compile: {} Runtime: {}", QT_VERSION_STR, qVersion()); } static QString PrettyProductName() { @@ -4216,10 +4217,12 @@ int main(int argc, char* argv[]) { // so we can see if we get \u3008 instead // TL;DR all other number formats are consecutive in unicode code points // This bug is fixed in Qt6, specifically 6.0.0-alpha1 +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) const QLocale locale = QLocale::system(); if (QStringLiteral("\u3008") == locale.toString(1)) { QLocale::setDefault(QLocale::system().name()); } +#endif // Qt changes the locale and causes issues in float conversion using std::to_string() when // generating shaders |