diff options
Diffstat (limited to 'engines/draci/mouse.cpp')
-rw-r--r-- | engines/draci/mouse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/draci/mouse.cpp b/engines/draci/mouse.cpp index 28e2a84fc7..1d251d24c3 100644 --- a/engines/draci/mouse.cpp +++ b/engines/draci/mouse.cpp @@ -108,7 +108,7 @@ void Mouse::setCursorType(CursorType cur) { Sprite sp(f->_data, f->_length, 0, 0, true); CursorMan.replaceCursorPalette(_vm->_screen->getPalette(), 0, kNumColours); CursorMan.replaceCursor(sp.getBuffer(), sp.getWidth(), sp.getHeight(), - sp.getWidth() / 2, sp.getHeight() / 2); + sp.getWidth() / 2, sp.getHeight() / 2, 255); } void Mouse::loadItemCursor(const GameItem *item, bool highlighted) { @@ -126,7 +126,7 @@ void Mouse::loadItemCursor(const GameItem *item, bool highlighted) { Sprite sp(f->_data, f->_length, 0, 0, true); CursorMan.replaceCursorPalette(_vm->_screen->getPalette(), 0, kNumColours); CursorMan.replaceCursor(sp.getBuffer(), sp.getWidth(), sp.getHeight(), - sp.getWidth() / 2, sp.getHeight() / 2); + sp.getWidth() / 2, sp.getHeight() / 2, 255); } } // End of namespace Draci |