Fixed warning.

This commit is contained in:
Robert Osfield
2003-04-08 20:05:00 +00:00
parent 8a3d731739
commit 06e773cefb

View File

@@ -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;