From da3b9b2bf940185ebdd482affe724366989787d3 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Sat, 4 Oct 2025 09:55:45 -0500 Subject: [PATCH] Adjust font increase --- 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 41a484d..f53be68 100644 --- a/js/rmmz_windows.js +++ b/js/rmmz_windows.js @@ -403,13 +403,13 @@ Window_Base.prototype.processDrawIcon = function(iconIndex, textState) { Window_Base.prototype.makeFontBigger = function() { if (this.contents.fontSize <= 96) { - this.contents.fontSize += 12; + this.contents.fontSize += 6; } }; Window_Base.prototype.makeFontSmaller = function() { if (this.contents.fontSize >= 24) { - this.contents.fontSize -= 12; + this.contents.fontSize -= 6; } };