Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix order of auto equip message #2931

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions soh/soh/OTRGlobals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1736,12 +1736,12 @@ extern "C" void* getN64WeirdFrame(s32 i) {

extern "C" int GetEquipNowMessage(char* buffer, char* src, const int maxBufferSize) {
CustomMessage customMessage("\x04\x1A\x08"
"D\x96sirez-vous l'\x96quiper maintenant?"
"Would you like to equip it now?"
"\x09&&"
"\x1B%g"
"Oui"
"Yes"
"&"
"Non"
"No"
"%w\x02",
"\x04\x1A\x08"
"M"
Expand All @@ -1753,13 +1753,13 @@ extern "C" int GetEquipNowMessage(char* buffer, char* src, const int maxBufferSi
"&"
"Nein!"
"%w\x02",
"\x04\x1A\x08"
"Would you like to equip it now?"
"\x04\x1A\x08"
"D\x96sirez-vous l'\x96quiper maintenant?"
"\x09&&"
"\x1B%g"
"Yes"
"Oui"
"&"
"No"
"Non"
"%w\x02");
customMessage.Format();

Expand Down Expand Up @@ -2095,4 +2095,4 @@ extern "C" void Gfx_RegisterBlendedTexture(const char* name, u8* mask, u8* repla

extern "C" void SaveManager_ThreadPoolWait() {
SaveManager::Instance->ThreadPoolWait();
}
}