diff options
author | Stijn Buys <ingar@osirion.org> | 2008-06-02 16:20:47 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-06-02 16:20:47 +0000 |
commit | 8c17868585e2a12f947ec387947c4521ef21d775 (patch) | |
tree | 83d36d3dc36698aa0d36a3b9b9a8bb0826520586 /src/render | |
parent | 0f87d2fd05786f7ab128d4a041673f6fb085139f (diff) |
keyboard binds
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/camera.cc | 6 | ||||
-rw-r--r-- | src/render/textures.cc | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/src/render/camera.cc b/src/render/camera.cc index 8da6bc9..a879b82 100644 --- a/src/render/camera.cc +++ b/src/render/camera.cc @@ -130,19 +130,19 @@ void Camera::next_mode() case Free: // switch camera to Track mode set_mode(Track); - con_print << "camera mode: track" << std::endl; + core::application()->notify_message(std::string("view: track")); break; case Track: // switch camera to Cockpit mode set_mode(Cockpit); - con_print << "camera mode: cockpit" << std::endl; + core::application()->notify_message(std::string("view: cockpit")); break; case Cockpit: // switch camera to Free mode set_mode(Free); - con_print << "camera mode: free" << std::endl; + core::application()->notify_message(std::string("view: free")); break; default: diff --git a/src/render/textures.cc b/src/render/textures.cc index cfd627c..71abc87 100644 --- a/src/render/textures.cc +++ b/src/render/textures.cc @@ -44,8 +44,10 @@ void Textures::init() load("bitmaps/loader"); // crosshairs - load("bitmaps/crosshair"); - + load("bitmaps/crosshairs/aim"); + load("bitmaps/crosshairs/control"); + load("bitmaps/crosshairs/target"); + // light flares load("bitmaps/fx/flare00"); load("bitmaps/fx/flare01"); |