From ac4095abfbfaa762e4cf554f6e989d97c19c1ead Mon Sep 17 00:00:00 2001 From: dazedanon Date: Thu, 18 Dec 2025 14:40:36 -0600 Subject: [PATCH] Adjust font size --- js/rmmz_windows.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/rmmz_windows.js b/js/rmmz_windows.js index 4bf4552..f87669e 100644 --- a/js/rmmz_windows.js +++ b/js/rmmz_windows.js @@ -1620,9 +1620,9 @@ Window_Help.prototype.setItem = function(item) { this.setText(item ? item.description : ""); }; -Window_Base.prototype.resetFontSettings = function() { +Window_Help.prototype.resetFontSettings = function() { this.contents.fontFace = $gameSystem.mainFontFace(); - this.contents.fontSize = $gameSystem.mainFontSize() - 4; + this.contents.fontSize = 17; this.resetTextColor(); };