diff options
author | Miroslav Remák | 2018-07-15 16:51:01 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-08-25 23:12:01 +0200 |
commit | eaba12cecdb8c062093559af9d3caee6535059d2 (patch) | |
tree | 1e90325388d6c0b3e1867f91c4c1dd099a7570ed | |
parent | d358a65bbc57ab9099620bf2309893f99dbf164c (diff) | |
download | scummvm-rg350-eaba12cecdb8c062093559af9d3caee6535059d2.tar.gz scummvm-rg350-eaba12cecdb8c062093559af9d3caee6535059d2.tar.bz2 scummvm-rg350-eaba12cecdb8c062093559af9d3caee6535059d2.zip |
MUTATIONOFJB: Use the vanilla cursor.
-rw-r--r-- | engines/mutationofjb/mutationofjb.cpp | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/engines/mutationofjb/mutationofjb.cpp b/engines/mutationofjb/mutationofjb.cpp index 986b00dfc9..b535e19c40 100644 --- a/engines/mutationofjb/mutationofjb.cpp +++ b/engines/mutationofjb/mutationofjb.cpp @@ -54,12 +54,29 @@ MutationOfJBEngine::~MutationOfJBEngine() { void MutationOfJBEngine::setupCursor() { const uint8 white[] = {0xFF, 0xFF, 0xFF}; - const uint8 cursor[] = {0xFF}; + + const uint8 cursor[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + }; _screen->setPalette(white, 0xFF, 1); CursorMan.disableCursorPalette(true); - CursorMan.pushCursor(cursor, 1, 1, 0, 0, 0); + CursorMan.pushCursor(cursor, 15, 15, 7, 7, 0); CursorMan.showMouse(true); } |