Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp5
1 files 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);
}
}