Clipping Save/Load Text Fix

This commit is contained in:
SoggySemen 2026-03-19 22:39:51 -07:00
parent 7d90bf31ff
commit 97750cf21e

View file

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