Fixed warning.
This commit is contained in:
@@ -46,11 +46,11 @@ public:
|
|||||||
{
|
{
|
||||||
v.visit(*this);
|
v.visit(*this);
|
||||||
}
|
}
|
||||||
inline int getMouseX(void) {return mouse_x;};
|
inline float getMouseX(void) {return mouse_x;};
|
||||||
inline int getMouseY(void) {return mouse_y;};
|
inline float getMouseY(void) {return mouse_y;};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int mouse_x, mouse_y;
|
float mouse_x, mouse_y;
|
||||||
};
|
};
|
||||||
|
|
||||||
static geodemoEventHandler *ghand=NULL;
|
static geodemoEventHandler *ghand=NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user