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:
authorNathan Letwory <nathan@letworyinteractive.com>2011-08-02 14:39:46 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-08-02 14:39:46 +0400
commit467475590e5c6595fefccd77e028ca611c15863f (patch)
tree7cc316c0dececf7e7646e7cd48d67e9dd5906d5a /intern/ghost
parent6bc101fa7e9a51bdcd27a0bcf6d7d26fbe733c5b (diff)
Some more silencing. Enable with BF_GHOST_DEBUG
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_NDOFManager.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_NDOFManager.cpp b/intern/ghost/intern/GHOST_NDOFManager.cpp
index 72b0dba297a..5a0f14c85a3 100644
--- a/intern/ghost/intern/GHOST_NDOFManager.cpp
+++ b/intern/ghost/intern/GHOST_NDOFManager.cpp
@@ -23,6 +23,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#include "GHOST_Debug.h"
#include "GHOST_NDOFManager.h"
#include "GHOST_EventNDOF.h"
#include "GHOST_EventKey.h"
@@ -186,9 +187,9 @@ GHOST_NDOFManager::GHOST_NDOFManager(GHOST_System& sys)
memset(m_rotation, 0, sizeof(m_rotation));
#ifdef WITH_INPUT_NDOF
- puts("WITH_INPUT_NDOF is defined!");
+ GHOST_PRINT("WITH_INPUT_NDOF is defined!");
#else
- puts("WITH_INPUT_NDOF is not defined.");
+ GHOST_PRINT("WITH_INPUT_NDOF is not defined.");
#endif
}