chore: Remove unused OW functions

This commit is contained in:
Justin Scofield
2022-08-07 12:40:46 -04:00
parent ebf6666ef6
commit c86a7d0f01
3 changed files with 23 additions and 126 deletions

View File

@@ -26,7 +26,7 @@ absl::Status Overworld::Load(ROM &rom, uchar *ow_blockset) {
auto size = tiles16.size();
for (int i = 0; i < core::kNumOverworldMaps; ++i) {
auto map_status =
overworld_maps_[i].BuildMapV2(size, game_state_, map_parent_);
overworld_maps_[i].BuildMap(size, game_state_, map_parent_);
if (!map_status.ok()) {
return map_status;
}