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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-12-12 23:20:36 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-12-12 23:20:36 +0400
commitfc65922124a17a01c90615eb1723c64058f372a8 (patch)
treeb5dad38424e8126fc56c4093120b181bdafa6d37 /intern
parent7605e9dbf2dea7b1ad502e9710de44273c7dc394 (diff)
GHOST should now be finally fixed
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_System.cpp6
1 files 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;
}