Merge branch 'main' into 'main'

Clipping Save/Load Text Fix

See merge request dazed-translations/ViolatedPrincess-GPT4!12
This commit is contained in:
DazedAnon 2026-03-22 02:55:25 +00:00
commit edd4ba7732

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;