CSfxManager: make priority values const

This commit is contained in:
Henrique Gemignani Passos Lima 2022-10-03 20:03:50 +03:00
parent d531b082ea
commit 0acb1e0e40
No known key found for this signature in database
GPG Key ID: E224F951761145F8
1 changed files with 3 additions and 3 deletions

View File

@ -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