mirror of
https://github.com/zeldaret/tmc
synced 2026-05-26 23:47:47 -04:00
Fix a lot of pointer comparisons to 0 (or nothing) to explicitly use NULL
This commit is contained in:
+1
-1
@@ -349,7 +349,7 @@ void ExecuteScriptForEntity(Entity* entity, void (*postScriptCallback)(Entity*,
|
||||
} else {
|
||||
HandlePostScriptActions(entity, *piVar1);
|
||||
}
|
||||
if (!entity->next) {
|
||||
if (entity->next == NULL) {
|
||||
DeleteThisEntity();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user