Skip to content

Commit d295c96

Browse files
Fixed an issue loading tilesets > 16x8
ye
1 parent c4ab19e commit d295c96

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1268,8 +1268,8 @@ int main(int, char**)
12681268

12691269
ImGui::NewLine();
12701270

1271-
// Version info, might update this sometimes??
1272-
ImGui::Text("Map Test Thingy v0.1d");
1271+
// Version info, this gets updated sometimes
1272+
ImGui::Text("Map Test Thingy v0.2");
12731273

12741274
// Only set zoom button size on initial render
12751275
if (zoom_btn_size == 0.0f) zoom_btn_size = ImGui::GetFrameHeight();
@@ -1611,6 +1611,7 @@ int main(int, char**)
16111611
else memcpy(tiles, tileset_data, sizeof(tiles));
16121612
}
16131613

1614+
first_tileset = true;
16141615
regen_tileset = true;
16151616
first_palette = true;
16161617
regen_palette = true;

0 commit comments

Comments
 (0)