diff options
Diffstat (limited to 'saga/actionmap.cpp')
-rw-r--r-- | saga/actionmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/actionmap.cpp b/saga/actionmap.cpp index 6494bcf031..ddc7aa4633 100644 --- a/saga/actionmap.cpp +++ b/saga/actionmap.cpp @@ -50,7 +50,7 @@ void ActionMap::load(const byte *resourcePointer, size_t resourceLength) { if (_stepZoneList) error("ActionMap::load _stepZoneList != NULL"); - _stepZoneList = (HitZone **) malloc(_stepZoneListCount * sizeof (HitZone *)); + _stepZoneList = (HitZone **) malloc(_stepZoneListCount * sizeof(HitZone *)); if (_stepZoneList == NULL) { error("ActionMap::load Memory allocation failure"); } |