From cfed1631aa38d6813cbdeba785af5b67fd81fdb6 Mon Sep 17 00:00:00 2001 From: tobspr Date: Mon, 22 Jun 2020 12:10:17 +0200 Subject: [PATCH] Increase maximum concurrent ui sounds --- src/js/game/sound_proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/game/sound_proxy.js b/src/js/game/sound_proxy.js index 91fb15af..d0f4c660 100644 --- a/src/js/game/sound_proxy.js +++ b/src/js/game/sound_proxy.js @@ -8,7 +8,7 @@ import { SOUNDS } from "../platform/sound"; const avgSoundDurationSeconds = 0.25; const maxOngoingSounds = 2; -const maxOngoingUiSounds = 2; +const maxOngoingUiSounds = 25; // Proxy to the application sound instance export class SoundProxy {