From 4635651e16fb1008de1e4aa55740881b41fdc382 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Sun, 20 Jul 2025 09:23:53 -0500 Subject: [PATCH] Fix font size for descriptions --- www/js/rpg_windows.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/rpg_windows.js b/www/js/rpg_windows.js index 46fcd55..227aaaf 100644 --- a/www/js/rpg_windows.js +++ b/www/js/rpg_windows.js @@ -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); }