Adjust # of lines in window

This commit is contained in:
Dazed 2023-10-20 09:12:30 -05:00
parent 087d7db7d4
commit d5a75e73e1

View file

@ -1495,7 +1495,7 @@ Window_Help.prototype.constructor = Window_Help;
Window_Help.prototype.initialize = function (numLines) {
var width = Graphics.boxWidth;
var height = this.fittingHeight(numLines || 2);
var height = this.fittingHeight(numLines || 3);
Window_Base.prototype.initialize.call(this, 0, 0, width, height);
this._text = '';
};