| 260 | } |
| 261 | |
| 262 | int16 cSound_Amiga::Music_GetVolume(int16 pChannel) { |
| 263 | if (!mCurrentMusic) |
| 264 | return 0; |
| 265 | |
| 266 | if (pChannel == -1) { |
| 267 | pChannel = 0; |
| 268 | } |
| 269 | |
| 270 | return mCurrentMusic->volumeMax[pChannel]; |
| 271 | } |
| 272 | |
| 273 | void cSound_Amiga::Sound_Stop() { |
| 274 |
nothing calls this directly
no outgoing calls
no test coverage detected