mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Fixed the double in mouseData
This commit is contained in:
parent
942769b672
commit
3ccb93583f
@ -25,8 +25,8 @@
|
||||
INLINE MouseData::
|
||||
MouseData() {
|
||||
_in_window = false;
|
||||
_xpos = 0.0;
|
||||
_ypos = 0.0;
|
||||
_xpos = 0;
|
||||
_ypos = 0;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
@ -43,8 +43,8 @@ PUBLISHED:
|
||||
|
||||
public:
|
||||
bool _in_window;
|
||||
double _xpos;
|
||||
double _ypos;
|
||||
int _xpos;
|
||||
int _ypos;
|
||||
};
|
||||
|
||||
INLINE ostream &operator << (ostream &out, const MouseData &md);
|
||||
|
Loading…
x
Reference in New Issue
Block a user