SaveTool: update a TextUnformatted() call.

This commit is contained in:
Guillaume Jacquemin 2022-12-05 11:50:28 +01:00
parent 457bb5e89f
commit d21e2cbabb
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ SaveTool::drawUnavailableMaterialRow(Containers::StringView name, std::int32_t t
ImGui::TableSetColumnIndex(0);
ImGui::Text("T%i", tier);
ImGui::TableSetColumnIndex(1);
ImGui::TextUnformatted(name.data());
ImGui::TextUnformatted(name.begin(), name.end());
ImGui::TableSetColumnIndex(2);
ImGui::TextDisabled("Unavailable as of game version " SUPPORTED_GAME_VERSION);
}