aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/menu.cpp
diff options
context:
space:
mode:
authorMax Horn2010-06-17 23:11:12 +0000
committerMax Horn2010-06-17 23:11:12 +0000
commita2bcf9ac31d025d09fabcd2d636eeb34d3c75df0 (patch)
tree6a99a8769777c41f2d2f24e904a98b128f0fb7da /engines/sci/graphics/menu.cpp
parent8e07a1e16768548112a290d04348e26173e8afa0 (diff)
downloadscummvm-rg350-a2bcf9ac31d025d09fabcd2d636eeb34d3c75df0.tar.gz
scummvm-rg350-a2bcf9ac31d025d09fabcd2d636eeb34d3c75df0.tar.bz2
scummvm-rg350-a2bcf9ac31d025d09fabcd2d636eeb34d3c75df0.zip
SCI: Rename sciEvent to SciEvent
svn-id: r49960
Diffstat (limited to 'engines/sci/graphics/menu.cpp')
-rw-r--r--engines/sci/graphics/menu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/menu.cpp b/engines/sci/graphics/menu.cpp
index f5eac70ccd..00eb533b41 100644
--- a/engines/sci/graphics/menu.cpp
+++ b/engines/sci/graphics/menu.cpp
@@ -681,7 +681,7 @@ uint16 GfxMenu::mouseFindMenuItemSelection(Common::Point mousePosition, uint16 m
}
GuiMenuItemEntry *GfxMenu::interactiveWithKeyboard() {
- sciEvent curEvent;
+ SciEvent curEvent;
uint16 newMenuId = _curMenuId;
uint16 newItemId = _curItemId;
GuiMenuItemEntry *curItemEntry = findItem(_curMenuId, _curItemId);
@@ -805,7 +805,7 @@ GuiMenuItemEntry *GfxMenu::interactiveWithKeyboard() {
// The menu item that is selected at that time is chosen. If no menu item is selected we cancel
// No keyboard interaction is allowed, cause that wouldnt make any sense at all
GuiMenuItemEntry *GfxMenu::interactiveWithMouse() {
- sciEvent curEvent;
+ SciEvent curEvent;
uint16 newMenuId = 0, newItemId = 0;
uint16 curMenuId = 0, curItemId = 0;
Common::Point mousePosition = _cursor->getPosition();