From 687b675f482c70d3ae55445afeef99594896d50f Mon Sep 17 00:00:00 2001 From: OleSTEEP Date: Thu, 8 Feb 2024 16:19:31 +0300 Subject: [PATCH] Skip splashes with touch input --- www.rus/js/plugins.js | 2 +- www.rus/js/plugins/GALV_AnimatedSplashScreens.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www.rus/js/plugins.js b/www.rus/js/plugins.js index 828530a..56433bf 100644 --- a/www.rus/js/plugins.js +++ b/www.rus/js/plugins.js @@ -4204,7 +4204,7 @@ var $plugins = [ }, { "name": "DisableMouse", - "status": true, + "status": false, "description": "Disables mouse clicks.", "parameters": {} diff --git a/www.rus/js/plugins/GALV_AnimatedSplashScreens.js b/www.rus/js/plugins/GALV_AnimatedSplashScreens.js index 0d5ffed..182e970 100644 --- a/www.rus/js/plugins/GALV_AnimatedSplashScreens.js +++ b/www.rus/js/plugins/GALV_AnimatedSplashScreens.js @@ -213,7 +213,7 @@ Scene_SplashScreens.prototype.updateSplash = function() { }; }; - if (Input.isTriggered('ok')) { + if (Input.isTriggered('ok') || TouchInput.isTriggered()) { if (Galv.ASPLASH.splashSkip == 'one') { this._ticker = this.splash().timer; this._fadeIn = false;