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>2009-02-24 20:59:46 +0000
committerStijn Buys <ingar@osirion.org>2009-02-24 20:59:46 +0000
commit3cf0d66d369c0445a58a6da8abfca61a5dcd9178 (patch)
treedca103eac8afc2bbc06951bb8ae7b3bde9d6413d /src/client/map.h
parent53faab4c1d692fed7c7ecfedea57fc457bf61e80 (diff)
split map target selection from hud target selection
Diffstat (limited to 'src/client/map.h')
-rw-r--r--src/client/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/map.h b/src/client/map.h
index 2b1bacf..37da19a 100644
--- a/src/client/map.h
+++ b/src/client/map.h
@@ -18,7 +18,7 @@ public:
Map(ui::Widget *parent = 0);
virtual ~Map();
- inline size_t hover() const { return map_hover; }
+ inline unsigned int hover() const { return map_hover; }
/// toggle the map window
void toggle();
@@ -32,7 +32,7 @@ public:
protected:
virtual void draw();
- size_t map_hover;
+ unsigned int map_hover;
core::Entity *map_target;
};