Fix the Yes/No spacing on a couple of messages.

This commit is contained in:
Christopher Leggett 2025-04-29 22:00:41 -04:00
commit e585b76d51
No known key found for this signature in database
GPG key ID: F2121C0AF9938ABF
2 changed files with 6 additions and 6 deletions

View file

@ -7,9 +7,9 @@ extern "C" {
// RANDOTODO: Port the rest of the behavior for this enhancement here.
void BuildNightGuardMessage(uint16_t* textId, bool* loadFromMessageTable) {
CustomMessage msg = CustomMessage("You look bored. Wanna go out for a&walk?\x1B&%gYes&No%w",
"Du siehst gelangweilt aus.&Willst Du einen Spaziergang machen?\x1B&%gJa&Nein%w",
"Tu as l'air de t'ennuyer. Tu veux&aller faire un tour?\x1B&%gOui&Non%w");
CustomMessage msg = CustomMessage("You look bored. Wanna go out for a walk?\x1B%gYes&No%w",
"Du siehst gelangweilt aus. Willst Du einen Spaziergang machen?\x1B%gJa&Nein%w",
"Tu as l'air de t'ennuyer. Tu veux aller faire un tour?\x1B%gOui&Non%w");
msg.AutoFormat();
msg.LoadIntoFont();
*loadFromMessageTable = false;

View file

@ -10,10 +10,10 @@ void BuildQuitFishingMessage(uint16_t* textId, bool* loadFromMessageTable) {
// TODO: See about loading the vanilla message and manipulating that instead of
// a brand new one. Might not be worth it.
CustomMessage msg = CustomMessage(
"Hey! Hey!&You can't take the rod out of here!&I'm serious!^Do you want to quit?&\x1B&%gYes&No%w",
"Hey! Hey!&You can't take the rod out of here!&I'm serious!^Do you want to quit?\x1B%gYes&No%w",
"Hey! Hey!&Du kannst die Angel doch nicht&einfach mitnehmen!&Ganz im Ernst!^Möchtest Du "
"aufhören?&\x1B&%gJa&Nein%w",
"Holà! Holà!&Les cannes ne sortent pas d'ici!&Je suis sérieux!^Voulez-vous arrêter?&\x1B&%gOui&Non%w");
"aufhören?\x1B%gJa&Nein%w",
"Holà! Holà!&Les cannes ne sortent pas d'ici!&Je suis sérieux!^Voulez-vous arrêter?\x1B%gOui&Non%w");
msg.AutoFormat();
msg.LoadIntoFont();
*loadFromMessageTable = false;