Adjust font increase

This commit is contained in:
dazedanon 2025-10-04 09:55:45 -05:00
parent a4fa09b3bf
commit da3b9b2bf9

View file

@ -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;
}
};