mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-21 06:21:16 +00:00
Fix many missing NULLs (#1389)
* Fix many missing NULLs * Fix a raw actor id in en_horse
This commit is contained in:
parent
78e528d6fb
commit
2f4c25da53
42 changed files with 66 additions and 64 deletions
|
@ -303,7 +303,7 @@ void func_8097D130(DemoGo* this, PlayState* play) {
|
|||
void DemoGo_Update(Actor* thisx, PlayState* play) {
|
||||
DemoGo* this = (DemoGo*)thisx;
|
||||
|
||||
if (this->action < 0 || this->action >= 7 || D_8097D44C[this->action] == 0) {
|
||||
if (this->action < 0 || this->action >= 7 || D_8097D44C[this->action] == NULL) {
|
||||
osSyncPrintf(VT_FGCOL(RED) "メインモードがおかしい!!!!!!!!!!!!!!!!!!!!!!!!!\n" VT_RST);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue