diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2022-07-23 15:44:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-23 15:44:49 -0400 |
| commit | 6fc12c3a707cd3bb73660dbcbaa515ede8e86547 (patch) | |
| tree | 8b3b52eec659d4996774fe6c1d07ff23630f9b84 /src/code/z_map_exp.c | |
| parent | 6472f6832328c12492a73afb99d9f951b6d85ee8 (diff) | |
Inventory Editor Ok and Documented (z_kaleido_debug.c) (#954)
* Match Debug Menu
* Many docs and discussions
* Missed one
* A bit more
* More PR Suggestions
* phrasing
* hex health
* Fix
Diffstat (limited to 'src/code/z_map_exp.c')
| -rw-r--r-- | src/code/z_map_exp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/z_map_exp.c b/src/code/z_map_exp.c index 9baff91f1..5135a3c41 100644 --- a/src/code/z_map_exp.c +++ b/src/code/z_map_exp.c @@ -1,4 +1,5 @@ #include "global.h" +#include "overlays/kaleido_scope/ovl_kaleido_scope/z_kaleido_scope.h" s16 sMinimapInitPosX = 0; s16 sMinimapInitPosZ = 0; @@ -238,7 +239,7 @@ void Map_Update(PlayState* play) { func_80105B34(play); - if ((play->pauseCtx.state == 0) && (play->pauseCtx.debugState == 0)) { + if ((play->pauseCtx.state == 0) && (play->pauseCtx.debugEditor == DEBUG_EDITOR_NONE)) { if (Map_IsInDungeonArea(play)) { floor = func_80109124(player->actor.world.pos.y); if (floor != -1) { |
