Resolve absl::Status related build "errors"
This commit is contained in:
@@ -267,7 +267,7 @@ void MasterEditor::DrawDungeonEditor() {
|
|||||||
|
|
||||||
void MasterEditor::DrawPaletteEditor() {
|
void MasterEditor::DrawPaletteEditor() {
|
||||||
TAB_ITEM("Palettes")
|
TAB_ITEM("Palettes")
|
||||||
palette_editor_.Update();
|
status_ = palette_editor_.Update();
|
||||||
END_TAB_ITEM()
|
END_TAB_ITEM()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
BuildTiles16Gfx(count, ow_blockset); // build on GFX.mapgfx16Ptr
|
||||||
|
|
||||||
// int world = 0;
|
// int world = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user