diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-26 19:20:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-26 16:20:21 -0800 |
| commit | 09280ae00bf6e457aa4694dbcb3f8388f702f3b9 (patch) | |
| tree | 05a1146271664c2d81756eaa162f11b4823ae1d0 /src/JSystem/JAudio2/JASTrack.cpp | |
| parent | 4ebf9fac9f21ffb7a0c9f33317001e83e82a39ac (diff) | |
Fix optimization flag for Shield (#3004)
* Fix optimization flag for Shield
* Minor debug work
* Fix NULL asserts
Diffstat (limited to 'src/JSystem/JAudio2/JASTrack.cpp')
| -rw-r--r-- | src/JSystem/JAudio2/JASTrack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSystem/JAudio2/JASTrack.cpp b/src/JSystem/JAudio2/JASTrack.cpp index 6ba0a66a79..eec0ebd644 100644 --- a/src/JSystem/JAudio2/JASTrack.cpp +++ b/src/JSystem/JAudio2/JASTrack.cpp @@ -190,7 +190,7 @@ void JASTrack::stopSeq() { } void JASTrack::start() { - JUT_ASSERT(289, mParent != 0); + JUT_ASSERT(289, mParent != NULL); JUT_ASSERT(290, mStatus == STATUS_FREE); mStatus = STATUS_RUN; } |
