Fixes missed Switch specific invocation of old Console logging macros.

This commit is contained in:
Kenix3 2022-08-09 22:25:55 -04:00
parent a4804d7290
commit 7b11509010
1 changed files with 1 additions and 1 deletions

View File

@ -1530,7 +1530,7 @@ namespace SohImGui {
if (ImGui::BeginCombo("##perf", SWITCH_CPU_PROFILES[slot])) { if (ImGui::BeginCombo("##perf", SWITCH_CPU_PROFILES[slot])) {
for (int sId = 0; sId <= SwitchProfiles::POWERSAVINGM3; sId++) { for (int sId = 0; sId <= SwitchProfiles::POWERSAVINGM3; sId++) {
if (ImGui::Selectable(SWITCH_CPU_PROFILES[sId], sId == slot)) { 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); CVar_SetS32("gSwitchPerfMode", sId);
Switch::ApplyOverclock(); Switch::ApplyOverclock();
needs_save = true; needs_save = true;