From 0806ca5dbfafaaafa8aa39e8c88fec9d12629572 Mon Sep 17 00:00:00 2001 From: "DESKTOP-2C8K1H5\\Regius" Date: Tue, 29 Jan 2019 08:09:15 +0800 Subject: [PATCH] Updated LEDA_ChangeKey Fix Length crash bug when using videos. --- General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js | 4 ++-- LEDA_CreateExtensionSettings | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js b/General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js index 6c0c711..329e9c1 100644 --- a/General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js +++ b/General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js @@ -2,7 +2,7 @@ // // Archeia Engine LEDA -- Change Keys // -// Version 1.0.0 - 1/25/2019 +// Version 1.0.0.1 - 1/25/2019 // // Change keyboard input for specific Visual Novel Maker games. // This plugin overwrites a lot of input functions. @@ -86,7 +86,7 @@ gs.Component_MessageTextRenderer.prototype.setupEventHandlers = function() { _this.waitForKey = false; _this.isWaiting = false; } - if (_this.isWaiting && !_this.waitForKey && !_this.waitCounter && Input.keys[Archeia.AEL_KEY.InputOK] || Input.keys[Archeia.AEL_KEY.InputOK_ALT] ) { + if (_this.isWaiting && !_this.waitForKey && !_this.waitCounter && (Input.keys[Archeia.AEL_KEY.InputOK] || Input.keys[Archeia.AEL_KEY.InputOK_ALT]) ) { _this["continue"](); } if (_this.waitForKey) { diff --git a/LEDA_CreateExtensionSettings b/LEDA_CreateExtensionSettings index 0c7124b..f2a006e 100644 --- a/LEDA_CreateExtensionSettings +++ b/LEDA_CreateExtensionSettings @@ -73,7 +73,8 @@ Backspace will hide the window. >>> Changelog <<< ---------------------------------------------------------------------------------------------------------- -1.0.0.0 - Initial Release (1/25/2019) +1.0.1 - Fixed crashing when using videos. +1.0.0 - Initial Release (1/25/2019) >>> Special Message~ <<< ----------------------------------------------------------------------------------------------------------