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-09-06 02:15:07 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-09-06 02:15:07 +0400
commit0c992c73a1d85ad63ad80cc93c3e716577f5566e (patch)
tree7fc2fd7f425123fadf7265d401e5e9bc6071ebd5
parent271f069b8531b1fa01539dcab4675ff3b8e4485b (diff)
Typofix
-rw-r--r--intern/ghost/intern/GHOST_NDOFManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_NDOFManager.cpp b/intern/ghost/intern/GHOST_NDOFManager.cpp
index 51525df003e..c2e6f278c6b 100644
--- a/intern/ghost/intern/GHOST_NDOFManager.cpp
+++ b/intern/ghost/intern/GHOST_NDOFManager.cpp
@@ -366,11 +366,11 @@ void GHOST_NDOFManager::setDeadZone(float dz)
}
else if (dz > 0.5f) {
// warn the rogue user/programmer, but allow it
- GHOST_PRINT("ndof: dead zone of %.2f is rather high...\n", dz);
+ GHOST_PRINTF("ndof: dead zone of %.2f is rather high...\n", dz);
}
m_deadZone = dz;
- GHOST_PRINT("ndof: dead zone set to %.2f\n", dz);
+ GHOST_PRINTF("ndof: dead zone set to %.2f\n", dz);
}
static bool atHomePosition(GHOST_TEventNDOFMotionData* ndof)