mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-23 06:02:08 -05:00
Removes some magic numbers
This commit is contained in:
parent
efd4ceb636
commit
3da197f0cd
@ -16,7 +16,7 @@ typedef enum {
|
|||||||
TEXT_RED_RUPEE = 0xF0,
|
TEXT_RED_RUPEE = 0xF0,
|
||||||
TEXT_PURPLE_RUPEE = 0xF1,
|
TEXT_PURPLE_RUPEE = 0xF1,
|
||||||
TEXT_HUGE_RUPEE = 0xF2,
|
TEXT_HUGE_RUPEE = 0xF2,
|
||||||
TEXT_BEAN_SALESEMAN = 0x405E
|
TEXT_BEAN_SALESMAN = 0x405E
|
||||||
} TextIDs;
|
} TextIDs;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -3741,7 +3741,7 @@ void CreateScrubMessages() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
customMessageManager->CreateMessage(
|
customMessageManager->CreateMessage(
|
||||||
Randomizer::scrubMessageTableID, 0x405E,
|
Randomizer::scrubMessageTableID, TEXT_BEAN_SALESMAN,
|
||||||
{
|
{
|
||||||
TEXTBOX_TYPE_BLACK,
|
TEXTBOX_TYPE_BLACK,
|
||||||
TEXTBOX_POS_BOTTOM,
|
TEXTBOX_POS_BOTTOM,
|
||||||
|
@ -1727,8 +1727,8 @@ extern "C" int CustomMessage_RetrieveIfExists(GlobalContext* globalCtx) {
|
|||||||
// In rando, replace Navi's general overworld hints with rando-related gameplay tips
|
// In rando, replace Navi's general overworld hints with rando-related gameplay tips
|
||||||
} else if (CVar_GetS32("gRandoRelevantNavi", 1) && textId >= 0x0140 && textId <= 0x015F) {
|
} else if (CVar_GetS32("gRandoRelevantNavi", 1) && textId >= 0x0140 && textId <= 0x015F) {
|
||||||
messageEntry = Randomizer_GetNaviMessage();
|
messageEntry = Randomizer_GetNaviMessage();
|
||||||
} else if (Randomizer_GetSettingValue(RSK_SHUFFLE_MAGIC_BEANS) && textId == TEXT_BEAN_SALESEMAN) {
|
} else if (Randomizer_GetSettingValue(RSK_SHUFFLE_MAGIC_BEANS) && textId == TEXT_BEAN_SALESMAN) {
|
||||||
messageEntry = CustomMessageManager::Instance->RetrieveMessage(Randomizer::scrubMessageTableID, TEXT_BEAN_SALESEMAN);
|
messageEntry = CustomMessageManager::Instance->RetrieveMessage(Randomizer::scrubMessageTableID, TEXT_BEAN_SALESMAN);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (textId == TEXT_GS_NO_FREEZE || textId == TEXT_GS_FREEZE) {
|
if (textId == TEXT_GS_NO_FREEZE || textId == TEXT_GS_FREEZE) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user