This commit is contained in:
dazedanon 2025-11-22 15:06:03 -06:00
parent 6495a35c29
commit 075575efb5

View file

@ -407,13 +407,13 @@ Window_Base.prototype.processDrawIcon = function(iconIndex, textState) {
Window_Base.prototype.makeFontBigger = function() { Window_Base.prototype.makeFontBigger = function() {
if (this.contents.fontSize <= 96) { if (this.contents.fontSize <= 96) {
this.contents.fontSize += 12; this.contents.fontSize += 6;
} }
}; };
Window_Base.prototype.makeFontSmaller = function() { Window_Base.prototype.makeFontSmaller = function() {
if (this.contents.fontSize >= 24) { if (this.contents.fontSize >= 24) {
this.contents.fontSize -= 12; this.contents.fontSize -= 6;
} }
}; };