Forgot this printf

This commit is contained in:
GuglioIsStupid 2026-03-05 23:01:19 -05:00
parent 358a93427d
commit 0145c3eb74

View file

@ -652,7 +652,6 @@ void SoundEngine::playUI(int iSound, float volume, float pitch)
float finalVolume = volume * m_MasterEffectsVolume;
if (finalVolume > 1.0f)
finalVolume = 1.0f;
printf("UI Sound volume set to %f\nEffects volume: %f\n", finalVolume, m_MasterEffectsVolume);
ma_sound_set_volume(&s->sound, finalVolume);
ma_sound_set_pitch(&s->sound, pitch);