Disable LLM integration on emscripten.

This commit is contained in:
Bartosz Taudul
2025-06-01 14:10:47 +02:00
parent ec205fa854
commit 9c648232a8
4 changed files with 21 additions and 5 deletions

View File

@@ -782,8 +782,10 @@ static void DrawContents()
if( ImGui::Checkbox( "Enable achievements", &tracy::s_config.achievements ) ) tracy::SaveConfig();
ImGui::Spacing();
if( ImGui::Checkbox( "Save UI scale", &tracy::s_config.saveUserScale) ) tracy::SaveConfig();
#ifndef __EMSCRIPTEN__
ImGui::Spacing();
if( ImGui::Checkbox( "Enable LLM", &tracy::s_config.llm ) ) tracy::SaveConfig();
#endif
ImGui::PopStyleVar();
ImGui::TreePop();