clang-format

This commit is contained in:
theo
2020-06-13 17:02:27 -07:00
parent 8e1ca1936b
commit 66fcdf6186
86 changed files with 2320 additions and 2604 deletions
+8 -8
View File
@@ -1,12 +1,12 @@
#include "global.h"
#include "entityData.h"
void extern CreateEntity(EntityData *);
void extern CreateEntity(EntityData*);
void LoadRoomEntityList(EntityData *listPtr) {
if (listPtr != NULL) {
while (listPtr->entityType != 0xFF) {
CreateEntity(listPtr++);
}
}
}
void LoadRoomEntityList(EntityData* listPtr) {
if (listPtr != NULL) {
while (listPtr->entityType != 0xFF) {
CreateEntity(listPtr++);
}
}
}