From cafd80b5c985aefc8e39f04ae15b45cfaa6b70f5 Mon Sep 17 00:00:00 2001 From: ru_shalm Date: Fri, 8 Nov 2019 02:18:32 +0900 Subject: [PATCH] fix sound not playing under certain operations --- js/rpg_core/WebAudio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/rpg_core/WebAudio.js b/js/rpg_core/WebAudio.js index 65987120..4123ac6c 100644 --- a/js/rpg_core/WebAudio.js +++ b/js/rpg_core/WebAudio.js @@ -211,7 +211,7 @@ WebAudio._onHide = function() { */ WebAudio._onShow = function() { if (this._shouldMuteOnHide()) { - this._fadeIn(0.5); + this._fadeIn(1); } };