rename functions

This commit is contained in:
Misha 2023-11-05 08:02:55 -05:00
parent 9d3c5dc785
commit c82dbdcf17
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ void MxBackgroundAudioManager::Stop()
}
// OFFSET: LEGO1 0x1007f570
void MxBackgroundAudioManager::FUN_1007f570()
void MxBackgroundAudioManager::LowerVolume()
{
if (m_unk148 == 0) {
if (m_unk13c == 0) {
@ -64,7 +64,7 @@ void MxBackgroundAudioManager::FUN_1007f570()
}
// OFFSET: LEGO1 0x1007f5b0
void MxBackgroundAudioManager::FUN_1007f5b0()
void MxBackgroundAudioManager::RaiseVolume()
{
if (m_unk148 != 0) {
m_unk148--;

View File

@ -43,8 +43,8 @@ class MxBackgroundAudioManager : public MxCore {
virtual MxResult Create(MxAtomId& p_script, MxU32 p_frequencyMS);
void Stop();
void FUN_1007f570();
void FUN_1007f5b0();
void LowerVolume();
void RaiseVolume();
private:
void Init();