aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/mpaldll.h
diff options
context:
space:
mode:
authorStrangerke2012-06-07 21:14:59 +0200
committerStrangerke2012-06-07 21:14:59 +0200
commitcd15e483ed64274049142a2e6838962d794c3ff5 (patch)
tree33a1487e084aa4066a648fe46d599dc95d458f7c /engines/tony/mpal/mpaldll.h
parenta7a619e1b41b771726b6fb611ddb640e38a78185 (diff)
downloadscummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.tar.gz
scummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.tar.bz2
scummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.zip
TONY: Some more renaming
Diffstat (limited to 'engines/tony/mpal/mpaldll.h')
-rw-r--r--engines/tony/mpal/mpaldll.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/tony/mpal/mpaldll.h b/engines/tony/mpal/mpaldll.h
index 44d817d748..e331335315 100644
--- a/engines/tony/mpal/mpaldll.h
+++ b/engines/tony/mpal/mpaldll.h
@@ -144,7 +144,7 @@ struct command {
struct MPALDIALOG {
uint32 nObj; // Dialog number
- struct command Command[MAX_COMMANDS_PER_DIALOG];
+ struct command _command[MAX_COMMANDS_PER_DIALOG];
struct {
uint16 num;
@@ -152,7 +152,7 @@ struct MPALDIALOG {
byte nCmds;
uint16 CmdNum[MAX_COMMANDS_PER_GROUP];
- } Group[MAX_GROUPS_PER_DIALOG];
+ } _group[MAX_GROUPS_PER_DIALOG];
struct {
// The last choice has nChoice == 0
@@ -170,12 +170,12 @@ struct MPALDIALOG {
// Modified at run-time: 0 if the select is currently disabled,
// and 1 if currently active
byte curActive;
- } Select[MAX_SELECTS_PER_CHOICE];
+ } _select[MAX_SELECTS_PER_CHOICE];
- } Choice[MAX_CHOICES_PER_DIALOG];
+ } _choice[MAX_CHOICES_PER_DIALOG];
- uint16 PeriodNums[MAX_PERIODS_PER_DIALOG];
- HGLOBAL Periods[MAX_PERIODS_PER_DIALOG];
+ uint16 _periodNums[MAX_PERIODS_PER_DIALOG];
+ HGLOBAL _periods[MAX_PERIODS_PER_DIALOG];
} PACKED_STRUCT;
typedef MPALDIALOG *LPMPALDIALOG;
@@ -204,7 +204,7 @@ struct MPALITEM {
byte nActions; // Number of managed actions
uint32 dwRes; // Resource that contains frames and patterns
- struct command Command[MAX_COMMANDS_PER_ITEM];
+ struct command _command[MAX_COMMANDS_PER_ITEM];
// Pointer to array of structures containing various managed activities. In practice, of
// every action we know what commands to run, including those defined in structures above
@@ -223,7 +223,7 @@ struct MPALSCRIPT {
uint32 nMoments;
- struct command Command[MAX_COMMANDS_PER_SCRIPT];
+ struct command _command[MAX_COMMANDS_PER_SCRIPT];
struct {
int32 dwTime;