Clipping Save/Load Text Fix
This commit is contained in:
parent
7d90bf31ff
commit
97750cf21e
1 changed files with 7 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue