diff options
| author | Paul Gilbert | 2016-04-07 19:50:16 -0400 |
|---|---|---|
| committer | Paul Gilbert | 2016-04-07 19:50:16 -0400 |
| commit | 6fd32e6dc10e8b3332b0438c069a61f009185441 (patch) | |
| tree | 6a0cfba698a06585955d6dc0a8260cd5b63679ca | |
| parent | 31934ac4ba62546d66e565e6caa0da0caa666d23 (diff) | |
| download | scummvm-rg350-6fd32e6dc10e8b3332b0438c069a61f009185441.tar.gz scummvm-rg350-6fd32e6dc10e8b3332b0438c069a61f009185441.tar.bz2 scummvm-rg350-6fd32e6dc10e8b3332b0438c069a61f009185441.zip | |
TITANIC: Minor change to Cursor enum
| -rw-r--r-- | engines/titanic/core/view_item.cpp | 2 | ||||
| -rw-r--r-- | engines/titanic/support/mouse_cursor.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/core/view_item.cpp b/engines/titanic/core/view_item.cpp index d747f06ac8..3f6d5d5cff 100644 --- a/engines/titanic/core/view_item.cpp +++ b/engines/titanic/core/view_item.cpp @@ -262,7 +262,7 @@ bool CViewItem::handleMouseMsg(CMouseMsg *msg, bool flag) { return false; for (int idx = (int)gameObjects.size() - 1; idx >= 0; ++idx) { - if (gameObjects[idx]->_cursorId != CURSOR_ARROW2) { + if (gameObjects[idx]->_cursorId != CURSOR_IGNORE) { CScreenManager::_screenManagerPtr->_mouseCursor->setCursor(gameObjects[idx]->_cursorId); break; } diff --git a/engines/titanic/support/mouse_cursor.h b/engines/titanic/support/mouse_cursor.h index 6e1e6f7c3e..ac5da26382 100644 --- a/engines/titanic/support/mouse_cursor.h +++ b/engines/titanic/support/mouse_cursor.h @@ -42,7 +42,7 @@ enum CursorId { CURSOR_ACTIVATE = 9, CURSOR_INVALID = 10, CURSOR_MAGNIFIER = 11, - CURSOR_ARROW2 = 12, + CURSOR_IGNORE = 12, CURSOR_BACKWARDS = 13, CURSOR_DOWN = 14, CURSOR_HOURGLASS = 15 |
