From fc65922124a17a01c90615eb1723c64058f372a8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 12 Dec 2012 19:20:36 +0000 Subject: [PATCH] GHOST should now be finally fixed --- intern/ghost/intern/GHOST_System.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/intern/ghost/intern/GHOST_System.cpp b/intern/ghost/intern/GHOST_System.cpp index a008d224a20..41beeac6b51 100644 --- a/intern/ghost/intern/GHOST_System.cpp +++ b/intern/ghost/intern/GHOST_System.cpp @@ -45,7 +45,9 @@ GHOST_System::GHOST_System() - : m_displayManager(0), + : m_nativePixel(false), + m_nativePixelSize(1), + m_displayManager(0), m_timerManager(0), m_windowManager(0), m_eventManager(0) @@ -376,7 +378,7 @@ int GHOST_System::confirmQuit(GHOST_IWindow *window) const bool GHOST_System::useNativePixel(void) { - m_nativePixel = 1; + m_nativePixel = true; return 1; }