diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2022-10-04 07:18:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-04 01:18:50 -0400 |
| commit | 2f4c25da53b3a23251a6f2ab477d588b4da38475 (patch) | |
| tree | 5f6bed10b7d66be3892d7f8a6a2ac34d880d0bc2 /src/code/code_800FC620.c | |
| parent | 78e528d6fb61068bf1320073c7a440ad2d920b2f (diff) | |
Fix many missing NULLs (#1389)
* Fix many missing NULLs
* Fix a raw actor id in en_horse
Diffstat (limited to 'src/code/code_800FC620.c')
| -rw-r--r-- | src/code/code_800FC620.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/code_800FC620.c b/src/code/code_800FC620.c index 951b2e79a..d31d028a9 100644 --- a/src/code/code_800FC620.c +++ b/src/code/code_800FC620.c @@ -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); |
