mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
Fixed the double in mouseData
This commit is contained in:
parent
942769b672
commit
3ccb93583f
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user