Skip to content

Commit

Permalink
Updated LEDA_ChangeKey
Browse files Browse the repository at this point in the history
Fix Length crash bug when using videos.
  • Loading branch information
Archeia committed Jan 29, 2019
1 parent b4b89c8 commit 0806ca5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions General Modification/LEDA_ChangeKeys/LEDA_ChangeKeys.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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) {
Expand Down
3 changes: 2 additions & 1 deletion LEDA_CreateExtensionSettings
Original file line number Diff line number Diff line change
Expand Up @@ -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~ <<<
----------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 0806ca5

Please sign in to comment.