aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/group.h
diff options
context:
space:
mode:
authorStrangerke2016-09-03 14:20:13 +0200
committerStrangerke2016-09-03 14:20:13 +0200
commitfbe9c92ce1418238d5aaed3e88f7982d80fd375d (patch)
treeb2a0f6e5827108760462235570d6dbf0c1b2ab4f /engines/dm/group.h
parent9aa582e341e188895f8a48cc765aaf96d58448a0 (diff)
downloadscummvm-rg350-fbe9c92ce1418238d5aaed3e88f7982d80fd375d.tar.gz
scummvm-rg350-fbe9c92ce1418238d5aaed3e88f7982d80fd375d.tar.bz2
scummvm-rg350-fbe9c92ce1418238d5aaed3e88f7982d80fd375d.zip
DM: Fix the style used for some pointers and casts
Diffstat (limited to 'engines/dm/group.h')
-rw-r--r--engines/dm/group.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dm/group.h b/engines/dm/group.h
index 38c3a0d207..53d80c6e4d 100644
--- a/engines/dm/group.h
+++ b/engines/dm/group.h
@@ -223,7 +223,7 @@ public:
void stopAttacking(ActiveGroup *group, int16 mapX, int16 mapY);// @ F0182_GROUP_StopAttacking
bool isArchenemyDoubleMovementPossible(CreatureInfo *info, int16 mapX, int16 mapY, uint16 dir); // @ F0204_GROUP_IsArchenemyDoubleMovementPossible
bool isCreatureAttacking(Group *group, int16 mapX, int16 mapY, uint16 creatureIndex); // @ F0207_GROUP_IsCreatureAttacking
- void setOrderedCellsToAttack(signed char * orderedCellsToAttack, int16 targetMapX,
+ void setOrderedCellsToAttack(signed char *orderedCellsToAttack, int16 targetMapX,
int16 targetMapY, int16 attackerMapX, int16 attackerMapY, uint16 cellSource); // @ F0229_GROUP_SetOrderedCellsToAttack
void stealFromChampion(Group *group, uint16 championIndex); // @ F0193_GROUP_StealFromChampion
int16 getChampionDamage(Group *group, uint16 champIndex); // @ F0230_GROUP_GetChampionDamage
@@ -244,7 +244,7 @@ public:
bool isFluxcageOnSquare(int16 mapX, int16 mapY); // @ F0221_GROUP_IsFluxcageOnSquare
void fuseAction(uint16 mapX, uint16 mapY); // @ F0225_GROUP_FuseAction
void saveActiveGroupPart(Common::OutSaveFile *file);
- void loadActiveGroupPart(Common::InSaveFile* file);
+ void loadActiveGroupPart(Common::InSaveFile *file);
};
}