diff options
| author | fig02 <fig02srl@gmail.com> | 2022-05-09 13:45:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-09 13:45:53 -0400 |
| commit | 2efd00863a1a7ec7c56e6d03dcd8b60fc838ccf3 (patch) | |
| tree | b6207b7673efeb15e9d12e8d028a3054c7ebc86f /src/code/z_parameter.c | |
| parent | 95b431793182bd021cb4234255f90b996edd8d4d (diff) | |
Introduce DEFINE_ENTRANCE for entrance table and create entrance enum (#1213)
* entrance table OK
* entrance enum fixed
* most entrances using enum, still need to do conditionals
* more entrances
* entrance_table.h cleanups
* some review
* remove _0 from first entrance in a group of setups
* change table description
* typo
* wens spellcheck in vscode
* remove extra line
Diffstat (limited to 'src/code/z_parameter.c')
| -rw-r--r-- | src/code/z_parameter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_parameter.c b/src/code/z_parameter.c index f8c6c8035..dc0468a5b 100644 --- a/src/code/z_parameter.c +++ b/src/code/z_parameter.c @@ -3029,7 +3029,7 @@ void Interface_Draw(GlobalContext* globalCtx) { }; static s16 rupeeDigitsFirst[] = { 1, 0, 0 }; static s16 rupeeDigitsCount[] = { 2, 3, 3 }; - static s16 spoilingItemEntrances[] = { 0x01AD, 0x0153, 0x0153 }; + static s16 spoilingItemEntrances[] = { ENTR_SPOT10_2, ENTR_SPOT07_3, ENTR_SPOT07_3 }; static f32 D_80125B54[] = { -40.0f, -35.0f }; // unused static s16 D_80125B5C[] = { 91, 91 }; // unused static s16 D_8015FFE0; |
