diff options
Diffstat (limited to 'engines/chewy/cursor.cpp')
-rw-r--r-- | engines/chewy/cursor.cpp | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/engines/chewy/cursor.cpp b/engines/chewy/cursor.cpp index 18e001f05f..df8a6daf07 100644 --- a/engines/chewy/cursor.cpp +++ b/engines/chewy/cursor.cpp @@ -32,21 +32,25 @@ namespace Chewy { const byte _cursorFrames[] = { - 4, 1, 1, 1, // walk - 4, 1, 1, 1, // pick up / use - 1, 1, 1, 1, 1, - 4, 1, 1, 1, // look - 4, 1, 1, 1, // talk - 4, 1, 1, 1, // open - 1, - 1, 1, 1, 1, // left, right, up, down - 1, // save - 1, - 5, 1, 1, 1, 1, - 1, - 1, // use (inventory) - 1, // look (inventory) - 1 // gun + 4, 1, 1, 1, // 0-3: walk + 4, 1, 1, 1, // 5-7: use (+ no use, 4) + 1, // 8: go to + 4, 1, 1, 1, // 9-12: nope + 4, 1, 1, 1, // 13-16: look + 4, 1, 1, 1, // 17-20: talk (+ no talk, 17) + 4, 1, 1, 1, // 21-24: inventory + 1, // 25: save + 1, // 26: exit left + 1, // 27: exit right + 1, // 28: exit up + 1, // 29: exit down + 1, // 30: disk + 1, // 31: Howard + 5, 1, 1, 1, 1, // 32: animated arrow + 1, // 37: Nichelle + 1, // 38: use (inventory) + 1, // 39: look (inventory) + 1 // 40: gun }; Cursor::Cursor(ChewyEngine *vm) : _vm(vm) { |