Fix font size for descriptions

This commit is contained in:
dazedanon 2025-07-20 09:23:53 -05:00
parent c79f6e7cdc
commit 4635651e16

View file

@ -281,7 +281,7 @@ Window_Base.prototype.drawTextExHelp = function(text, x, y) {
textState.text = this.convertEscapeCharacters(text);
textState.height = this.calcTextHeight(textState, false);
this.resetFontSettings();
this.contents.fontSize = 20
this.contents.fontSize = 18
while (textState.index < textState.text.length) {
this.processCharacter(textState);
}