aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/gui/gui_menu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/gui/gui_menu.h b/engines/sci/gui/gui_menu.h
index 919cc39dca..32fbbbaf9a 100644
--- a/engines/sci/gui/gui_menu.h
+++ b/engines/sci/gui/gui_menu.h
@@ -46,8 +46,8 @@ struct GuiMenuEntry {
uint16 id;
Common::String text;
- GuiMenuEntry(uint16 id)
- : id(id) { }
+ GuiMenuEntry(uint16 id_)
+ : id(id_) { }
};
typedef Common::List<GuiMenuEntry *> GuiMenuList;
@@ -63,8 +63,8 @@ struct GuiMenuItemEntry {
Common::String text;
Common::String textRightAligned;
- GuiMenuItemEntry(uint16 menuId, uint16 id)
- : menuId(menuId), id(id),
+ GuiMenuItemEntry(uint16 menuId_, uint16 id_)
+ : menuId(menuId_), id(id_),
enabled(true), tag(0), keyPress(0), keyModifier(0), separatorLine(false) { }
};
typedef Common::List<GuiMenuItemEntry *> GuiMenuItemList;