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_800EC960.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_800EC960.c')
| -rw-r--r-- | src/code/code_800EC960.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/code_800EC960.c b/src/code/code_800EC960.c index 98e3a0356..db828c39a 100644 --- a/src/code/code_800EC960.c +++ b/src/code/code_800EC960.c @@ -3071,7 +3071,7 @@ void AudioDebug_Draw(GfxPrint* printer) { } GfxPrint_SetPos(printer, 3, 24); - if (sSariaBgmPtr != 0) { + if (sSariaBgmPtr != NULL) { GfxPrint_Printf(printer, "SARIA BGM PTR %08x", sSariaBgmPtr); } |
