Gets the master volume
| 1397 | |
| 1398 | // Gets the master volume |
| 1399 | float hlsSystem::GetMasterVolume(void) { return m_master_volume; } |
| 1400 | inline int hlsSystem::MakeUniqueId(int sound_obj_index) { return ((((int)m_sounds_played) << 12) + sound_obj_index); } |
| 1401 | inline int hlsSystem::ValidateUniqueId(int hl_sound_uid) { |
| 1402 | ASSERT(MAX_SOUND_OBJECTS <= 0x0FFF); |
no outgoing calls
no test coverage detected