BGE cleanup: Getting rid of an unused variable warning in GPG_Canvas::Init().

This commit is contained in:
2013-07-09 01:42:13 +00:00
parent b73793f636
commit f6502a67f2

View File

@@ -55,9 +55,8 @@ void GPG_Canvas::Init()
{
if (m_window)
{
GHOST_TSuccess success;
success = m_window->setDrawingContextType(GHOST_kDrawingContextTypeOpenGL);
assert(success == GHOST_kSuccess);
m_window->setDrawingContextType(GHOST_kDrawingContextTypeOpenGL);
assert(m_window->getDrawingContextType() == GHOST_kDrawingContextTypeOpenGL);
}
}