From 469c499a6b6b5d2efa510ef5472b3e7625907745 Mon Sep 17 00:00:00 2001 From: Henrique Gemignani Passos Lima Date: Mon, 3 Oct 2022 20:03:50 +0300 Subject: [PATCH] CSfxManager: make priority values const Former-commit-id: 0acb1e0e401c7df8cb0776ae293a3bae0aba5655 --- include/Kyoto/Audio/CSfxManager.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Kyoto/Audio/CSfxManager.hpp b/include/Kyoto/Audio/CSfxManager.hpp index e978f302..1877bff1 100644 --- a/include/Kyoto/Audio/CSfxManager.hpp +++ b/include/Kyoto/Audio/CSfxManager.hpp @@ -20,9 +20,9 @@ public: static void PitchBend(CSfxHandle handle, int pitch); - static s16 kMaxPriority; // 0xff - static s16 kMedPriority; // 0x7f - static int kAllAreas; + const static s16 kMaxPriority; // 0xff + const static s16 kMedPriority; // 0x7f + const static int kAllAreas; }; #endif