diff --git a/www/js/plugins/Nore_RecollectionSave.js b/www/js/plugins/Nore_RecollectionSave.js index 598d7b6..273f3d0 100644 --- a/www/js/plugins/Nore_RecollectionSave.js +++ b/www/js/plugins/Nore_RecollectionSave.js @@ -333,6 +333,13 @@ var Nore; } _Scene_Save_prototype_onSavefileOk.call(this); }; +Scene_File.prototype.createHelpWindow = function () { + this._helpWindow = new Window_Help(1); + this._helpWindow.height = this._helpWindow.height + 10; + this._helpWindow.createContents(); // regenerate contents to match new height + this._helpWindow.setText(this.helpWindowText()); + this.addWindow(this._helpWindow); +}; Scene_File.prototype.createListWindow = function () { var x = 0; var y = this._helpWindow.height;