summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GL/GLInterface
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-12-02 13:17:27 -0500
committerLioncash <mathew1800@gmail.com>2020-12-02 13:38:33 -0500
commit139d4fc76e4ddf45179ca5ec5e42c52ef513ea4d (patch)
treea639ad5dfd8a1b85eb32d408e2068dce9f41ce00 /Source/Core/Common/GL/GLInterface
parent5abae61a8c7e0e4ac03bb8d3031793037e87fdd3 (diff)
General: Convert PanicAlerts over to fmt equivalent
Converts lingering panic alert calls over to the fmt-capable ones.
Diffstat (limited to 'Source/Core/Common/GL/GLInterface')
-rw-r--r--Source/Core/Common/GL/GLInterface/WGL.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Core/Common/GL/GLInterface/WGL.cpp b/Source/Core/Common/GL/GLInterface/WGL.cpp
index cf30dcf5e3..33d30c0a71 100644
--- a/Source/Core/Common/GL/GLInterface/WGL.cpp
+++ b/Source/Core/Common/GL/GLInterface/WGL.cpp
@@ -277,27 +277,27 @@ bool GLContextWGL::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
m_dc = GetDC(m_window_handle);
if (!m_dc)
{
- PanicAlert("(1) Can't create an OpenGL Device context. Fail.");
+ PanicAlertFmt("(1) Can't create an OpenGL Device context. Fail.");
return false;
}
- int pixel_format = ChoosePixelFormat(m_dc, &pfd);
- if (!pixel_format)
+ const int pixel_format = ChoosePixelFormat(m_dc, &pfd);
+ if (pixel_format == 0)
{
- PanicAlert("(2) Can't find a suitable PixelFormat.");
+ PanicAlertFmt("(2) Can't find a suitable PixelFormat.");
return false;
}
if (!SetPixelFormat(m_dc, pixel_format, &pfd))
{
- PanicAlert("(3) Can't set the PixelFormat.");
+ PanicAlertFmt("(3) Can't set the PixelFormat.");
return false;
}
m_rc = wglCreateContext(m_dc);
if (!m_rc)
{
- PanicAlert("(4) Can't create an OpenGL rendering context.");
+ PanicAlertFmt("(4) Can't create an OpenGL rendering context.");
return false;
}
@@ -310,7 +310,7 @@ bool GLContextWGL::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
// This is because we need an active context to use wglCreateContextAttribsARB.
if (!wglMakeCurrent(m_dc, m_rc))
{
- PanicAlert("(5) Can't make dummy WGL context current.");
+ PanicAlertFmt("(5) Can't make dummy WGL context current.");
return false;
}
@@ -324,7 +324,7 @@ bool GLContextWGL::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
// context. If we didn't get a core context, the caller expects that the context is not current.
if (!wglMakeCurrent(m_dc, nullptr))
{
- PanicAlert("(6) Failed to switch out temporary context");
+ PanicAlertFmt("(6) Failed to switch out temporary context");
return false;
}