aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/mouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/draci/mouse.h')
-rw-r--r--engines/draci/mouse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/draci/mouse.h b/engines/draci/mouse.h
index cb14c14383..918b10d75f 100644
--- a/engines/draci/mouse.h
+++ b/engines/draci/mouse.h
@@ -49,8 +49,8 @@ public:
void cursorOn();
void cursorOff();
void setPosition(uint16 x, uint16 y);
- void setCursorNum(CursorType cursorNum);
- CursorType getCursorNum() { return _cursorNum; }
+ void setCursorType(CursorType cur);
+ CursorType getCursorType() { return _cursorType; }
bool lButtonPressed() { return _lButton; }
bool rButtonPressed() { return _rButton; }
uint16 getPosX() { return _x; }
@@ -59,7 +59,7 @@ public:
private:
uint16 _x, _y;
bool _lButton, _rButton;
- CursorType _cursorNum;
+ CursorType _cursorType;
DraciEngine *_vm;
};