Skip to content

Commit

Permalink
Fix CSfxHandle
Browse files Browse the repository at this point in the history
  • Loading branch information
Antidote committed Oct 13, 2024
1 parent 5b5c114 commit c96cd28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Kyoto/Audio/CSfxHandle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class CSfxHandle {
CSfxHandle() : mID(0) {}
CSfxHandle(uint value);

int GetIndex() const { return mID & 0xFF; }
int GetIndex() const { return mID & 0xFFF; }
static CSfxHandle NullHandle() { return CSfxHandle(); }
void operator=(const CSfxHandle& other) { mID = other.mID; }
const bool operator==(const CSfxHandle& other) const { return mID == other.mID; }
Expand Down

0 comments on commit c96cd28

Please sign in to comment.