diff --git a/src/app/editor/master_editor.cc b/src/app/editor/master_editor.cc index 9f584b64..fab596a0 100644 --- a/src/app/editor/master_editor.cc +++ b/src/app/editor/master_editor.cc @@ -267,7 +267,7 @@ void MasterEditor::DrawDungeonEditor() { void MasterEditor::DrawPaletteEditor() { TAB_ITEM("Palettes") - palette_editor_.Update(); + status_ = palette_editor_.Update(); END_TAB_ITEM() } diff --git a/src/app/zelda3/overworld_map.cc b/src/app/zelda3/overworld_map.cc index f550d5e6..3fe99d03 100644 --- a/src/app/zelda3/overworld_map.cc +++ b/src/app/zelda3/overworld_map.cc @@ -122,7 +122,9 @@ void OverworldMap::BuildMap(int count, int game_state, uchar* map_parent, } } - BuildTileset(game_state); + if (!BuildTileset(game_state).ok()) { + std::cout << "BuildTileset failed" << std::endl; + } BuildTiles16Gfx(count, ow_blockset); // build on GFX.mapgfx16Ptr // int world = 0;