diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/input.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/parallaction/input.cpp b/engines/parallaction/input.cpp index a681660ce0..24e92fa3f2 100644 --- a/engines/parallaction/input.cpp +++ b/engines/parallaction/input.cpp @@ -472,7 +472,13 @@ void Input::initCursors() { _mouseArrow = _donnaCursor; } else { // TODO: Where are the Amiga cursors? - _mouseArrow = 0; + Graphics::Surface *surf1 = new Graphics::Surface; + surf1->create(_mouseComboProps_BR._width, _mouseComboProps_BR._height, 1); + _comboArrow = new SurfaceToFrames(surf1); + + Graphics::Surface *surf2 = new Graphics::Surface; + surf2->create(_mouseComboProps_BR._width, _mouseComboProps_BR._height, 1); + _mouseArrow = new SurfaceToFrames(surf2); } break; |