Fixed the double in mouseData

This commit is contained in:
Josh Yelon 2007-10-01 20:04:34 +00:00
parent 942769b672
commit 3ccb93583f
2 changed files with 4 additions and 4 deletions

View File

@ -25,8 +25,8 @@
INLINE MouseData:: INLINE MouseData::
MouseData() { MouseData() {
_in_window = false; _in_window = false;
_xpos = 0.0; _xpos = 0;
_ypos = 0.0; _ypos = 0;
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

View File

@ -43,8 +43,8 @@ PUBLISHED:
public: public:
bool _in_window; bool _in_window;
double _xpos; int _xpos;
double _ypos; int _ypos;
}; };
INLINE ostream &operator << (ostream &out, const MouseData &md); INLINE ostream &operator << (ostream &out, const MouseData &md);