mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-03 12:35:52 +00:00
Fix CSfxHandle
This commit is contained in:
parent
5b5c114bb6
commit
c96cd28abe
@ -8,7 +8,7 @@ public:
|
||||
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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user