diff --git a/libultraship/libultraship/ImGuiImpl.cpp b/libultraship/libultraship/ImGuiImpl.cpp index a583b3d9c..cd2ca1af3 100644 --- a/libultraship/libultraship/ImGuiImpl.cpp +++ b/libultraship/libultraship/ImGuiImpl.cpp @@ -1530,7 +1530,7 @@ namespace SohImGui { if (ImGui::BeginCombo("##perf", SWITCH_CPU_PROFILES[slot])) { for (int sId = 0; sId <= SwitchProfiles::POWERSAVINGM3; sId++) { if (ImGui::Selectable(SWITCH_CPU_PROFILES[sId], sId == slot)) { - INFO("Profile:: %s", SWITCH_CPU_PROFILES[sId]); + SPDLOG_INFO("Profile:: %s", SWITCH_CPU_PROFILES[sId]); CVar_SetS32("gSwitchPerfMode", sId); Switch::ApplyOverclock(); needs_save = true;