diff options
author | Matthew Hoops | 2010-01-29 21:34:59 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-01-29 21:34:59 +0000 |
commit | 1bc1ff1705dd446538fb45744d3134ee35486e04 (patch) | |
tree | f9ab595b5b866db75813ef8e8d76900d81b96807 /engines/sci/graphics/gui32.h | |
parent | a800855bf4799de2025f6f1220dc363e66aab475 (diff) | |
download | scummvm-rg350-1bc1ff1705dd446538fb45744d3134ee35486e04.tar.gz scummvm-rg350-1bc1ff1705dd446538fb45744d3134ee35486e04.tar.bz2 scummvm-rg350-1bc1ff1705dd446538fb45744d3134ee35486e04.zip |
Silence gcc warnings, have gui32.cpp only build when ENABLE_SCI32 is defined.
svn-id: r47680
Diffstat (limited to 'engines/sci/graphics/gui32.h')
-rw-r--r-- | engines/sci/graphics/gui32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/gui32.h b/engines/sci/graphics/gui32.h index 9194d9e81e..6098606a35 100644 --- a/engines/sci/graphics/gui32.h +++ b/engines/sci/graphics/gui32.h @@ -57,9 +57,9 @@ public: bool isCursorVisible(); void setCursorShape(GuiResourceId cursorId); void setCursorView(GuiResourceId viewNum, int loopNum, int cellNum, Common::Point *hotspot); - virtual void setCursorPos(Common::Point pos); + void setCursorPos(Common::Point pos); Common::Point getCursorPos(); - virtual void moveCursor(Common::Point pos); + void moveCursor(Common::Point pos); void setCursorZone(Common::Rect zone); int16 getCelWidth(GuiResourceId viewId, int16 loopNo, int16 celNo); |