From a94e44b33dbe4d7d9a22bec4ce043012fbc21f09 Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 16 Aug 2022 15:14:44 -0400 Subject: [PATCH] address jareds comments --- src/app/zelda3/overworld_map.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/zelda3/overworld_map.cc b/src/app/zelda3/overworld_map.cc index 328bfee4..f80cd0f7 100644 --- a/src/app/zelda3/overworld_map.cc +++ b/src/app/zelda3/overworld_map.cc @@ -131,7 +131,7 @@ void OverworldMap::BuildMap(int count, int game_state, uchar* map_parent, // int world = 0; // if (index_ < 64) { // map_tiles_ = map_tiles.light_world; - // } else if (index_ < 0x80 && index_ >= 64) { + // } else if (index_ < 0x80 && index_ >= 0x40) { // map_tiles_ = map_tiles.dark_world; // world = 1; // } else { @@ -178,7 +178,7 @@ absl::Status OverworldMap::BuildMapV2(int count, int game_state, // if (index_ < 64) { // world_ = 0; - // } else if (index_ < 0x80 && index_ >= 64) { + // } else if (index_ < 0x80 && index_ >= 0x40) { // world_ = 1; // } else { // world_ = 2;