mirror of
https://github.com/zeldaret/tmc
synced 2026-08-18 05:38:50 -04:00
Fix a lot of pointer comparisons to 0 (or nothing) to explicitly use NULL
This commit is contained in:
+1
-1
@@ -113,7 +113,7 @@ void sub_08022D40(Entity* this) {
|
||||
}
|
||||
|
||||
void sub_08022D90(Entity* this) {
|
||||
if (this->parent->next) {
|
||||
if (this->parent->next != NULL) {
|
||||
Entity* parent;
|
||||
|
||||
gUnk_080CBBBC[this->action](this);
|
||||
|
||||
Reference in New Issue
Block a user