aboutsummaryrefslogtreecommitdiff
path: root/saga/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/gfx.h')
-rw-r--r--saga/gfx.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/saga/gfx.h b/saga/gfx.h
index 0a836da1a1..147def0eb3 100644
--- a/saga/gfx.h
+++ b/saga/gfx.h
@@ -33,6 +33,11 @@ namespace Saga {
using Common::Point;
using Common::Rect;
+enum CursorType {
+ kCursorNormal,
+ kCursorBusy
+};
+
struct ClipData {
// input members
Rect sourceRect;
@@ -144,7 +149,7 @@ public:
void showCursor(bool state);
private:
- void setCursor();
+ void setCursor(CursorType cursorType = kCursorNormal);
int _init;
Surface _backBuffer;
byte _currentPal[PAL_ENTRIES * 4];