| 2046 | } |
| 2047 | |
| 2048 | void cFodder::Music_setup_track_unk(int16_t d0, int16_t d1) { |
| 2049 | if (mMusicTrack_unk != 0) |
| 2050 | return; |
| 2051 | |
| 2052 | if (mMusic_CurrentTrack != d0) { |
| 2053 | mMusic_TargetVolume = d1; |
| 2054 | mMusicTrack_unk = d0; |
| 2055 | } |
| 2056 | else { |
| 2057 | //byte_A4B5E[0x28] = (uint8_t)d1; |
| 2058 | mSound->Music_SetVolume(-1, d1); |
| 2059 | |
| 2060 | if (word_829F6 == 0) { |
| 2061 | // byte_A4B5E[0x29] = (uint8_t)d1; |
| 2062 | } |
| 2063 | } |
| 2064 | } |
| 2065 | |
| 2066 | void cFodder::Music_Increase_Channel_Volume() { |
| 2067 |
nothing calls this directly
no test coverage detected