mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-15 22:15:16 -05:00
ensure itemlocations is big enough for every check
This commit is contained in:
parent
d535d0be9a
commit
f5d7955547
@ -175,7 +175,7 @@ typedef struct {
|
|||||||
/* 0x1422 */ s16 sunsSongState; // controls the effects of suns song
|
/* 0x1422 */ s16 sunsSongState; // controls the effects of suns song
|
||||||
/* 0x1424 */ s16 healthAccumulator;
|
/* 0x1424 */ s16 healthAccumulator;
|
||||||
RandoSetting randoSettings[300];
|
RandoSetting randoSettings[300];
|
||||||
ItemLocationRando itemLocations[505];
|
ItemLocationRando itemLocations[RC_MAX];
|
||||||
HintLocationRando hintLocations[50];
|
HintLocationRando hintLocations[50];
|
||||||
char childAltarText[250];
|
char childAltarText[250];
|
||||||
char adultAltarText[750];
|
char adultAltarText[750];
|
||||||
|
@ -752,7 +752,8 @@ typedef enum {
|
|||||||
RC_ZR_NEAR_DOMAIN_GOSSIP_STONE,
|
RC_ZR_NEAR_DOMAIN_GOSSIP_STONE,
|
||||||
RC_ZR_NEAR_GROTTOS_GOSSIP_STONE,
|
RC_ZR_NEAR_GROTTOS_GOSSIP_STONE,
|
||||||
RC_ZR_OPEN_GROTTO_GOSSIP_STONE,
|
RC_ZR_OPEN_GROTTO_GOSSIP_STONE,
|
||||||
RC_UNKNOWN_CHECK
|
RC_UNKNOWN_CHECK,
|
||||||
|
RC_MAX
|
||||||
} RandomizerCheck;
|
} RandomizerCheck;
|
||||||
|
|
||||||
// based on https://github.com/TestRunnerSRL/OoT-Randomizer/blob/e337d7f603b91a6bacb618fb32cc7fd70ed9ffca/ItemList.py
|
// based on https://github.com/TestRunnerSRL/OoT-Randomizer/blob/e337d7f603b91a6bacb618fb32cc7fd70ed9ffca/ItemList.py
|
||||||
|
Loading…
Reference in New Issue
Block a user