diff options
author | lat9nq <[email protected]> | 2022-08-07 17:01:11 -0400 |
---|---|---|
committer | lat9nq <[email protected]> | 2022-08-07 17:02:06 -0400 |
commit | e2123b27e8a17a743cdf446c3e9eef0126e0d069 (patch) | |
tree | cb4a3b102f1840f9ef484f55f97a9e6543abc400 /src/yuzu/bootmanager.cpp | |
parent | 795ccc058daf163a7d4dd341516ce2c6b20a1714 (diff) | |
download | yuzu-mainline-e2123b27e8a17a743cdf446c3e9eef0126e0d069.tar.gz yuzu-mainline-e2123b27e8a17a743cdf446c3e9eef0126e0d069.zip |
yuzu: Fix fmt 9.0.0 issues
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index ef3bdfb1a..c262d0a2b 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -1089,8 +1089,8 @@ QStringList GRenderWindow::GetUnsupportedGLExtensions() const { } if (!unsupported_ext.empty()) { - LOG_ERROR(Frontend, "GPU does not support all required extensions: {}", - glGetString(GL_RENDERER)); + const std::string gl_renderer{reinterpret_cast<const char*>(glGetString(GL_RENDERER))}; + LOG_ERROR(Frontend, "GPU does not support all required extensions: {}", gl_renderer); } for (const QString& ext : unsupported_ext) { LOG_ERROR(Frontend, "Unsupported GL extension: {}", ext.toStdString()); |