diff options
author | Filippos Karapetis | 2016-10-10 05:05:19 +0300 |
---|---|---|
committer | Filippos Karapetis | 2016-10-10 05:05:19 +0300 |
commit | 5fbf9ad17168fead64ccd71d3493b9271b55bac5 (patch) | |
tree | d7f2ba5a89c00704e0fb72c144bc2d35ba0ab3b2 | |
parent | 375618828f5131dc3a838b51ffca7f7a6973b8f2 (diff) | |
download | scummvm-rg350-5fbf9ad17168fead64ccd71d3493b9271b55bac5.tar.gz scummvm-rg350-5fbf9ad17168fead64ccd71d3493b9271b55bac5.tar.bz2 scummvm-rg350-5fbf9ad17168fead64ccd71d3493b9271b55bac5.zip |
CHEWY: Remove duplicate table
-rw-r--r-- | engines/chewy/graphics.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/chewy/graphics.cpp b/engines/chewy/graphics.cpp index 427d4faf9b..07a3abe435 100644 --- a/engines/chewy/graphics.cpp +++ b/engines/chewy/graphics.cpp @@ -34,24 +34,6 @@ 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 -}; - Graphics::Graphics(ChewyEngine *vm) : _vm(vm) { _font = nullptr; } |