Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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;
};