SaveTool: make the tuning tab present only in debug builds.

This commit is contained in:
Guillaume Jacquemin 2022-03-20 11:32:08 +01:00
parent 47890f6939
commit 133c34f5f7
1 changed files with 2 additions and 0 deletions

View File

@ -138,10 +138,12 @@ void SaveTool::drawMassViewer() {
ImGui::EndTabItem(); ImGui::EndTabItem();
} }
#ifdef SAVETOOL_DEBUG_BUILD
if(ImGui::BeginTabItem("Tuning (WIP)")) { if(ImGui::BeginTabItem("Tuning (WIP)")) {
drawTuning(); drawTuning();
ImGui::EndTabItem(); ImGui::EndTabItem();
} }
#endif
ImGui::EndTabBar(); ImGui::EndTabBar();
} }