func renaming

This commit is contained in:
theo3
2020-08-20 02:21:23 -07:00
parent 6570eea1f2
commit 4f2f69ceb4
24 changed files with 72 additions and 69 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
#include "global.h"
#include "room.h"
void extern CreateEntity(EntityData*);
void extern LoadRoomEntity(EntityData*);
void LoadRoomEntityList(EntityData* listPtr) {
if (listPtr != NULL) {
while (listPtr->entityType != 0xFF) {
CreateEntity(listPtr++);
while (*(u8*)listPtr != 0xFF) {
LoadRoomEntity(listPtr++);
}
}
}