diff options
author | Martin Kiewitz | 2009-10-11 09:39:53 +0000 |
---|---|---|
committer | Martin Kiewitz | 2009-10-11 09:39:53 +0000 |
commit | 236e8013661d829d701491edc971b2ea7eef496e (patch) | |
tree | 62265adf36d440867b5d85a2344b5215daad2a2f /engines/sci/gui | |
parent | 91eee2e99ae17c8e4cfceb4b09f98f164d6eb5c7 (diff) | |
download | scummvm-rg350-236e8013661d829d701491edc971b2ea7eef496e.tar.gz scummvm-rg350-236e8013661d829d701491edc971b2ea7eef496e.tar.bz2 scummvm-rg350-236e8013661d829d701491edc971b2ea7eef496e.zip |
SCI/newgui: comment change on SciGui::moveCursor()
svn-id: r44902
Diffstat (limited to 'engines/sci/gui')
-rw-r--r-- | engines/sci/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index f5e008616b..7cf466a642 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -535,7 +535,7 @@ void SciGui::setCursorShape(GuiResourceId cursorId) { } void SciGui::setCursorPos(Common::Point pos) { - // FIXME: try to find out if we need to adjust position somehow, currently just forwarding to moveCursor() + // No adjustment of position needed, directly forwarding to SciGui::moveCursor() moveCursor(pos); } |