aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/menu.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-05 13:05:26 +0000
committerMartin Kiewitz2010-02-05 13:05:26 +0000
commit6c204cc890ed769f4d9268e80c6814c2eb95eb02 (patch)
treec84a91a8892615842017b16f5c0a5a7e9c47b32a /engines/sci/graphics/menu.h
parent19910ec27906dc07066271a11d295c9e5fcb90d9 (diff)
downloadscummvm-rg350-6c204cc890ed769f4d9268e80c6814c2eb95eb02.tar.gz
scummvm-rg350-6c204cc890ed769f4d9268e80c6814c2eb95eb02.tar.bz2
scummvm-rg350-6c204cc890ed769f4d9268e80c6814c2eb95eb02.zip
SCI: renamed class Cursor to GfxCursor
svn-id: r47902
Diffstat (limited to 'engines/sci/graphics/menu.h')
-rw-r--r--engines/sci/graphics/menu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/menu.h b/engines/sci/graphics/menu.h
index fb87c62f98..4144eab584 100644
--- a/engines/sci/graphics/menu.h
+++ b/engines/sci/graphics/menu.h
@@ -78,7 +78,7 @@ typedef Common::List<GuiMenuItemEntry *> GuiMenuItemList;
class GfxMenu {
public:
- GfxMenu(SciEvent *event, SegManager *segMan, SciGui *gui, GfxPorts *ports, GfxPaint16 *paint16, GfxText16 *text16, GfxScreen *screen, Cursor *cursor);
+ GfxMenu(SciEvent *event, SegManager *segMan, SciGui *gui, GfxPorts *ports, GfxPaint16 *paint16, GfxText16 *text16, GfxScreen *screen, GfxCursor *cursor);
~GfxMenu();
void reset();
@@ -109,7 +109,7 @@ private:
GfxPaint16 *_paint16;
GfxText16 *_text16;
GfxScreen *_screen;
- Cursor *_cursor;
+ GfxCursor *_cursor;
uint16 _listCount;
GuiMenuList _list;