mirror of https://github.com/PrimeDecomp/prime.git
CSfxManager: make priority values const
This commit is contained in:
parent
d531b082ea
commit
0acb1e0e40
|
@ -20,9 +20,9 @@ public:
|
||||||
|
|
||||||
static void PitchBend(CSfxHandle handle, int pitch);
|
static void PitchBend(CSfxHandle handle, int pitch);
|
||||||
|
|
||||||
static s16 kMaxPriority; // 0xff
|
const static s16 kMaxPriority; // 0xff
|
||||||
static s16 kMedPriority; // 0x7f
|
const static s16 kMedPriority; // 0x7f
|
||||||
static int kAllAreas;
|
const static int kAllAreas;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue