diff options
Diffstat (limited to 'engines/sci/graphics/gui.cpp')
-rw-r--r-- | engines/sci/graphics/gui.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/engines/sci/graphics/gui.cpp b/engines/sci/graphics/gui.cpp index 2c22619b6b..741b5d7e82 100644 --- a/engines/sci/graphics/gui.cpp +++ b/engines/sci/graphics/gui.cpp @@ -391,36 +391,12 @@ void SciGui::baseSetter(reg_t object) { } } -void SciGui::hideCursor() { - _cursor->hide(); -} - -void SciGui::showCursor() { - _cursor->show(); -} - -bool SciGui::isCursorVisible() { - return _cursor->isVisible(); -} - -void SciGui::setCursorShape(GuiResourceId cursorId) { - _cursor->setShape(cursorId); -} - -void SciGui::setCursorView(GuiResourceId viewNum, int loopNum, int cellNum, Common::Point *hotspot) { - _cursor->setView(viewNum, loopNum, cellNum, hotspot); -} - void SciGui::setCursorPos(Common::Point pos) { pos.y += _ports->getPort()->top; pos.x += _ports->getPort()->left; moveCursor(pos); } -Common::Point SciGui::getCursorPos() { - return _cursor->getPosition(); -} - void SciGui::moveCursor(Common::Point pos) { pos.y += _ports->_picWind->rect.top; pos.x += _ports->_picWind->rect.left; |