Skip to content

Commit

Permalink
fixed clang build
Browse files Browse the repository at this point in the history
  • Loading branch information
Redcrafter committed Sep 15, 2024
1 parent b501ce9 commit a8c7cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/tile_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void TileList::draw(const GameData& game_data, MapTile& mode1_placing) {
}

if(ImGui::Button("+")) {
groups.emplace_back("group " + std::to_string(groups.size() + 1));
groups.push_back(TileGroup {"group " + std::to_string(groups.size() + 1)});
}

if(drag_end) {
Expand Down

0 comments on commit a8c7cba

Please sign in to comment.