mirror of
https://github.com/zeldaret/oot
synced 2026-06-04 10:48:51 -04:00
Fix many missing NULLs (#1389)
* Fix many missing NULLs * Fix a raw actor id in en_horse
This commit is contained in:
@@ -73,10 +73,10 @@ void func_800FCA18(void* blk, u32 nBlk, u32 blkSize, arg3_800FCA18 arg3, s32 arg
|
||||
u32 pos;
|
||||
u32 end;
|
||||
|
||||
if (blk == 0) {
|
||||
if (blk == NULL) {
|
||||
return;
|
||||
}
|
||||
if (arg3 != 0) {
|
||||
if (arg3 != NULL) {
|
||||
end = (u32)blk;
|
||||
pos = (u32)end + (nBlk * blkSize);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user