diff options
-rw-r--r-- | engines/cruise/mouse.cpp | 3 | ||||
-rw-r--r-- | engines/cruise/mouse.h | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/engines/cruise/mouse.cpp b/engines/cruise/mouse.cpp index c60d9b459c..20616a72ee 100644 --- a/engines/cruise/mouse.cpp +++ b/engines/cruise/mouse.cpp @@ -137,8 +137,7 @@ int16 main10; 0xff, 0xff, 0xff, 0xff }; - void changeCursor(CursorType eType) - { + void changeCursor(CursorType eType) { assert(eType >= 0 && eType < CURSOR_MAX); if (currentCursor != eType) { byte mouseCursor[16 * 16]; diff --git a/engines/cruise/mouse.h b/engines/cruise/mouse.h index 7f0680acbb..502e894a82 100644 --- a/engines/cruise/mouse.h +++ b/engines/cruise/mouse.h @@ -30,8 +30,7 @@ namespace Cruise { extern int16 main10; - enum CursorType - { + enum CursorType { CURSOR_NORMAL = 0, CURSOR_DISK = 1, CURSOR_CROSS = 2, @@ -40,7 +39,7 @@ namespace Cruise { CURSOR_EXIT = 5, CURSOR_MAGNIFYING_GLASS = 6, - CURSOR_MAX = 7, + CURSOR_MAX = 7 }; void changeCursor(CursorType eType); |