diff options
author | Paul Gilbert | 2017-08-04 21:08:35 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-04 21:08:35 -0400 |
commit | f9c370d942d28c15b44a7f1786fac3e9e3bb545f (patch) | |
tree | e63027035b592c39882d61f45b999af45cd9d954 /engines/titanic/core | |
parent | fe88fab431194d0ae96776995408ecfe3a9ad0af (diff) | |
download | scummvm-rg350-f9c370d942d28c15b44a7f1786fac3e9e3bb545f.tar.gz scummvm-rg350-f9c370d942d28c15b44a7f1786fac3e9e3bb545f.tar.bz2 scummvm-rg350-f9c370d942d28c15b44a7f1786fac3e9e3bb545f.zip |
TITANIC: Fixes for names in the CursorId enum
Diffstat (limited to 'engines/titanic/core')
-rw-r--r-- | engines/titanic/core/link_item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/core/link_item.cpp b/engines/titanic/core/link_item.cpp index 977d2f170b..a131b85654 100644 --- a/engines/titanic/core/link_item.cpp +++ b/engines/titanic/core/link_item.cpp @@ -132,7 +132,7 @@ void CLinkItem::load(SimpleFile *file) { _cursorId = CURSOR_MOVE_FORWARD; break; default: - _cursorId = CURSOR_MOVE_FORWARD2; + _cursorId = CURSOR_MOVE_THROUGH; break; } } |