diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-07 00:09:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-06 21:09:16 -0800 |
| commit | cd94afafa0158278937dc2570badf48ec710cf0a (patch) | |
| tree | 02acc137440a7045fa30dec36c8cb2feb14c6a18 /include | |
| parent | fc31053cb6cbae738923c93f4ab574b06334d73d (diff) | |
Match Z2SceneMgr::sceneBgmStart (#2923)
Diffstat (limited to 'include')
| -rw-r--r-- | include/JSystem/JAudio2/JAISound.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/JAudio2/JAISound.h b/include/JSystem/JAudio2/JAISound.h index 171215323f..2a7fc1c0f9 100644 --- a/include/JSystem/JAudio2/JAISound.h +++ b/include/JSystem/JAudio2/JAISound.h @@ -20,8 +20,8 @@ public: JAISoundID() {} - bool isAnonymous() const { return id_.composite_ == 0xFFFFFFFF; } - void setAnonymous() { id_.composite_ = 0xFFFFFFFF; } + bool isAnonymous() const { return id_.composite_ == -1; } + void setAnonymous() { id_.composite_ = -1; } union { u32 composite_; |
