This commit is contained in:
Dazed 2023-06-30 11:47:16 -05:00
parent 485c0ae0e5
commit 2aa863448b
5 changed files with 7 additions and 14285 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -47,7 +47,7 @@ Window_Base.prototype.standardFontFace = function () {
};
Window_Base.prototype.standardFontSize = function () {
return 22;
return 20;
};
Window_Base.prototype.standardPadding = function () {
@ -83,7 +83,7 @@ Window_Base.prototype.contentsHeight = function () {
};
Window_Base.prototype.fittingHeight = function (numLines) {
return numLines * this.lineHeight() + this.standardPadding() * 2;
return numLines * this.lineHeight() + 18 + this.standardPadding() * 2;
};
Window_Base.prototype.updateTone = function () {