BlueLatex Fixes

This commit is contained in:
dazedanon 2025-11-09 16:55:19 -06:00
parent c267c6f135
commit 59549e6624
7 changed files with 10 additions and 10 deletions

View file

@ -25277,7 +25277,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"\\{Ah\"Aaaaahh!!♥♥" "\\{Ah\\}Aaaaahh!!♥♥"
] ]
}, },
{ {
@ -142822,7 +142822,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"You have learned \\c[23]Yatsufune Leap\\c[0]!" "You have learned \\c[23]Eightfold Leap\\c[0]!"
] ]
}, },
{ {

View file

@ -9371,7 +9371,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"It didn't look like they'd be able to land another lucky hit\nnow." "It didn't look like I'd be able to land another lucky hit\nnow."
] ]
}, },
{ {

View file

@ -14588,7 +14588,7 @@
"code": 401, "code": 401,
"indent": 1, "indent": 1,
"parameters": [ "parameters": [
"There's a" "There's a double lock sealing the dungeon."
] ]
}, },
{ {

View file

@ -7897,7 +7897,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"({Idiot♥} Like I'm just gonna let myself get caught!)" "\\(\\{Idiot♥\\} Like I'm just gonna let myself get caught!)"
] ]
}, },
{ {

View file

@ -7796,7 +7796,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"But... it's so sad if she can never leave this village." "But... it's too sad if he can never leave this village."
] ]
}, },
{ {
@ -7836,7 +7836,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"Her life comes first. She'll just have to endure it." "His life comes first. He'll just have to endure it."
] ]
}, },
{ {

View file

@ -18621,7 +18621,7 @@
"code": 401, "code": 401,
"indent": 0, "indent": 0,
"parameters": [ "parameters": [
"Sorry, \\N[1]-kun. Your onee-chan is just too quick on her\nfeet." "Sorry, \\N[1]-kun. Onee-chan is just too quick on her\nfeet."
] ]
}, },
{ {

View file

@ -385,13 +385,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;
} }
}; };