From f6502a67f203dbd57446f5b10cbdd82a4610e84c Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Tue, 9 Jul 2013 01:42:13 +0000 Subject: BGE cleanup: Getting rid of an unused variable warning in GPG_Canvas::Init(). --- source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp b/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp index c438dcdd4a6..a1d00dad0e1 100644 --- a/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp +++ b/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp @@ -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); } } -- cgit v1.2.3