| 2090 | } |
| 2091 | |
| 2092 | bool cFodder::Music_Decrease_Channel_Volume() { |
| 2093 | bool ret = false; |
| 2094 | if (mSound) { |
| 2095 | |
| 2096 | for (int i = 0; i < 4; ++i) { |
| 2097 | int16 v = mSound->Music_GetVolume(i); |
| 2098 | if (v > 0) { |
| 2099 | ret = true; |
| 2100 | mSound->Music_SetVolume(i, --v); |
| 2101 | } |
| 2102 | } |
| 2103 | } |
| 2104 | return ret; |
| 2105 | } |
| 2106 | |
| 2107 | /** |
| 2108 | * Load the Base and Sub Tile BLK Files |
nothing calls this directly
no test coverage detected