move DungeonEditor, merge widgets with style, split up CMakeLists

This commit is contained in:
scawful
2024-07-24 01:38:36 -04:00
parent f150cc0bbc
commit cbc6788e2e
21 changed files with 235 additions and 217 deletions

View File

@@ -179,8 +179,9 @@ absl::Status Rom::LoadFontGraphicsData() {
sheet_position += 0x400;
}
font_gfx_data_.reserve(0x4000);
for (int i = 0; i < 0x4000; i++) {
font_gfx_data_[i] = new_data[i];
font_gfx_data_.push_back(new_data[i]);
}
return absl::OkStatus();