aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/data/cursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lastexpress/data/cursor.h')
-rw-r--r--engines/lastexpress/data/cursor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lastexpress/data/cursor.h b/engines/lastexpress/data/cursor.h
index 0e9556aa6e..d23aa86a95 100644
--- a/engines/lastexpress/data/cursor.h
+++ b/engines/lastexpress/data/cursor.h
@@ -54,13 +54,13 @@ public:
Icon(CursorStyle style);
void setPosition(int16 x, int16 y);
- void setBrightness(uint brightness);
+ void setBrightness(int16 brightnessIndex);
Common::Rect draw(Graphics::Surface *surface);
private:
CursorStyle _style;
int16 _x, _y;
- uint8 _brightness;
+ int16 _brightnessIndex;
};
class Cursor {