font
This commit is contained in:
parent
6495a35c29
commit
075575efb5
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue