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:
authorMike Erwin <significant.bit@gmail.com>2011-08-03 10:42:55 +0400
committerMike Erwin <significant.bit@gmail.com>2011-08-03 10:42:55 +0400
commit3b541b259fc3591bf72605e5442701691190ad74 (patch)
tree5d0c073fa18c7e8fa5504594a6897937cdaf0523 /intern
parent9cf3bcd414bc0a6df0abc451040bc3098fe81e5d (diff)
removed attempted WITH_BF_3DMOUSE detection, fixed just one indention (left the others in their ugly new state)
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_NDOFManager.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/intern/ghost/intern/GHOST_NDOFManager.cpp b/intern/ghost/intern/GHOST_NDOFManager.cpp
index e608301bbcd..db87e1f8fc5 100644
--- a/intern/ghost/intern/GHOST_NDOFManager.cpp
+++ b/intern/ghost/intern/GHOST_NDOFManager.cpp
@@ -181,12 +181,6 @@ GHOST_NDOFManager::GHOST_NDOFManager(GHOST_System& sys)
// the other is not, initialize them both here:
memset(m_translation, 0, sizeof(m_translation));
memset(m_rotation, 0, sizeof(m_rotation));
-
-#ifdef WITH_INPUT_NDOF
- GHOST_PRINT("WITH_INPUT_NDOF is defined!");
-#else
- GHOST_PRINT("WITH_INPUT_NDOF is not defined.");
-#endif
}
bool GHOST_NDOFManager::setDevice(unsigned short vendor_id, unsigned short product_id)
@@ -219,7 +213,7 @@ bool GHOST_NDOFManager::setDevice(unsigned short vendor_id, unsigned short produ
m_buttonCount = 31;
break;
- // -- older devices --
+ // -- older devices --
case 0xC625:
puts("ndof: using SpacePilot");
m_deviceType = NDOF_SpacePilot;