Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-12-08 13:32:25 +0000
committerStijn Buys <ingar@osirion.org>2010-12-08 13:32:25 +0000
commit1124a81de517375a012b89bf83462c091d472cab (patch)
tree8522b6b68d9a023921797f0b50a3346274a37a5c /src/render
parent5be8beddb96efd9ee8229e11b3a4c6aa954d0723 (diff)
Don't print a message when switching camera view.
Diffstat (limited to 'src/render')
-rw-r--r--src/render/camera.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/camera.cc b/src/render/camera.cc
index 876fa42..ba9c367 100644
--- a/src/render/camera.cc
+++ b/src/render/camera.cc
@@ -137,21 +137,21 @@ void Camera::view_next()
// switch camera to Track mode
set_mode(Track);
//con_print << "view: track" << std::endl;
- core::application()->notify_message(core::Message::Info, std::string("view: track"));
+ //core::application()->notify_message(core::Message::Info, std::string("view: track"));
break;
case Track:
// switch camera to Cockpit mode
set_mode(Cockpit);
//con_print << "view: cockpit" << std::endl;
- core::application()->notify_message(core::Message::Info, std::string("view: cockpit"));
+ //core::application()->notify_message(core::Message::Info, std::string("view: cockpit"));
break;
case Cockpit:
// switch camera to Free mode
set_mode(Free);
//con_print << "view: free" << std::endl;
- core::application()->notify_message(core::Message::Info, std::string("view: free"));
+ //core::application()->notify_message(core::Message::Info, std::string("view: free"));
break;
default: