mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	Fix and improve custom audio stream volume code
This commit is contained in:
		
							parent
							
								
									04964b7569
								
							
						
					
					
						commit
						eb2033f9b0
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -367,7 +367,7 @@ f32 audio_stream_get_volume(struct ModAudio* audio) {
 | 
			
		|||
    if (!audio_sanity_check(audio, true, "getvol")) {
 | 
			
		||||
        return 0;
 | 
			
		||||
    }
 | 
			
		||||
    return ma_sound_get_volume(&audio->sound);
 | 
			
		||||
    return audio->baseVolume;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void audio_stream_set_volume(struct ModAudio* audio, f32 volume) {
 | 
			
		||||
| 
						 | 
				
			
			@ -377,6 +377,7 @@ void audio_stream_set_volume(struct ModAudio* audio, f32 volume) {
 | 
			
		|||
    f32 masterVolume = (f32)configMasterVolume / 127.0f;
 | 
			
		||||
    f32 musicVolume = (f32)configMusicVolume / 127.0f;
 | 
			
		||||
    ma_sound_set_volume(&audio->sound, masterVolume * musicVolume * volume);
 | 
			
		||||
    audio->baseVolume = volume;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// void audio_stream_set_speed(struct ModAudio* audio, f32 initial_freq, f32 speed, bool pitch) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue