Skip to content

Commit

Permalink
Windows|Debug|libgui: Don't assert GL operation success
Browse files Browse the repository at this point in the history
At shutdown, after restoring the original display mode, there was an
OpenGL error occurring that caused a crash (assert dialog => recursive
repaint?).
  • Loading branch information
skyjake committed Mar 13, 2014
1 parent f2e2e15 commit 15a2573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libgui/include/de/gui/libgui.h
Expand Up @@ -43,7 +43,7 @@
#endif

// Assertion specific to GL errors.
#ifdef Q_WS_X11
#if defined(Q_WS_X11) || defined(WIN32)
// Under X11 we're having more OpenGL errors; should investigate why.
# define LIBGUI_ASSERT_GL(cond) // ignored
#else
Expand Down

0 comments on commit 15a2573

Please sign in to comment.