From 8654778298e2f2bfbe39c0bc1aedbea0e1ba6808 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 5 Feb 2020 22:47:49 +0900 Subject: [PATCH] Qt: OpenGL display window crash fix --- src/duckstation-qt/opengldisplaywindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/opengldisplaywindow.cpp b/src/duckstation-qt/opengldisplaywindow.cpp index 79fbcd422..4774d6770 100644 --- a/src/duckstation-qt/opengldisplaywindow.cpp +++ b/src/duckstation-qt/opengldisplaywindow.cpp @@ -234,7 +234,7 @@ bool OpenGLDisplayWindow::createDeviceContext(QThread* worker_thread, bool debug if (m_gl_context->create()) { m_is_gles = m_gl_context->isOpenGLES(); - Log_InfoPrintf("Got a %s %d.%d context", major, minor, m_is_gles ? "OpenGL ES" : "desktop OpenGL"); + Log_InfoPrintf("Got a %s %d.%d context", m_is_gles ? "OpenGL ES" : "desktop OpenGL", major, minor); break; } }