Skip splashes with touch input

This commit is contained in:
OleSTEEP 2024-02-08 16:19:31 +03:00
parent a7ed8b3239
commit 687b675f48
2 changed files with 2 additions and 2 deletions

View file

@ -4204,7 +4204,7 @@ var $plugins = [
},
{
"name": "DisableMouse",
"status": true,
"status": false,
"description": "Disables mouse clicks.",
"parameters":
{}

View file

@ -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;