mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-23 14:22:16 -05:00
Fix text colours (Navi text is always light blue)
Navi text should always be \x44
This commit is contained in:
parent
7144d1a321
commit
6e8b45d129
@ -12,29 +12,29 @@ void RandoNaviTip(GlobalContext* globalCtx) {
|
||||
if (randNaviTip == 0) {
|
||||
switch (gSaveContext.language) {
|
||||
case LANGUAGE_FRA:
|
||||
strcpy(font->msgBuf, "\x08French tip about playing rando!\x02");
|
||||
strcpy(font->msgBuf, "\x08\x05\x44""French tip about playing rando!\x02");
|
||||
break;
|
||||
case LANGUAGE_GER:
|
||||
strcpy(font->msgBuf, "\x08German tip about playing rando!\x02");
|
||||
strcpy(font->msgBuf, "\x08\x05\x44German tip about playing rando!\x02");
|
||||
break;
|
||||
case LANGUAGE_ENG:
|
||||
default:
|
||||
strcpy(font->msgBuf, "\x08Missing a small key in a dungeon?\x01Maybe the\x05\x43 "
|
||||
"boss\x05\x40 has it!\x02");
|
||||
strcpy(font->msgBuf, "\x08\x05\x44Missing a small key in a dungeon?\x01Maybe the\x05\x41 "
|
||||
"boss\x05\x44 has it!\x02");
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (randNaviTip == 1) {
|
||||
switch (gSaveContext.language) {
|
||||
case LANGUAGE_FRA:
|
||||
strcpy(font->msgBuf, "\x08French tip about playing rando!\x02");
|
||||
strcpy(font->msgBuf, "\x08\x05\x44""French tip about playing rando!\x02");
|
||||
break;
|
||||
case LANGUAGE_GER:
|
||||
strcpy(font->msgBuf, "\x08German tip about playing rando!\x02");
|
||||
break;
|
||||
case LANGUAGE_ENG:
|
||||
default:
|
||||
strcpy(font->msgBuf, "\x08Sometimes you can use the \x05\x41Megaton\x01Hammer \x05\x40"
|
||||
strcpy(font->msgBuf, "\x08\x05\x44Sometimes you can use the \x05\x41Megaton\x01Hammer \x05\x44"
|
||||
"instead of bombs!\x02");
|
||||
break;
|
||||
}
|
||||
@ -42,7 +42,7 @@ void RandoNaviTip(GlobalContext* globalCtx) {
|
||||
if (randNaviTip == 2) {
|
||||
switch (gSaveContext.language) {
|
||||
case LANGUAGE_FRA:
|
||||
strcpy(font->msgBuf, "\x08French tip about playing rando!\x02");
|
||||
strcpy(font->msgBuf, "\x08\x05\x44""French tip about playing rando!\x02");
|
||||
break;
|
||||
case LANGUAGE_GER:
|
||||
strcpy(font->msgBuf, "\x08German tip about playing rando!\x02");
|
||||
@ -50,8 +50,8 @@ void RandoNaviTip(GlobalContext* globalCtx) {
|
||||
case LANGUAGE_ENG:
|
||||
default:
|
||||
strcpy(font->msgBuf,
|
||||
"\x08There are three\x05\x42 business scrubs\x05\x40 in\x01"
|
||||
"Hyrule who sell \x05\x44mysterious items\x05\x40. Do\x01you know where they are?\x02");
|
||||
"\x08\x05\x44There are three\x05\x42 business scrubs\x05\x44 in\x01"
|
||||
"Hyrule who sell \x05\x46mysterious items\x05\x44. Do\x01you know where they are?\x02");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user