feat(TabTunables): Added disable phone calls

This commit is contained in:
Yimura
2021-01-02 11:53:10 +01:00
parent d68faff094
commit 7f50ed47dd

View File

@ -11,6 +11,9 @@ namespace big
if (ImGui::Checkbox("No Idle Kick", g_settings.options["no_idle_kick"].get<bool*>()))
g_settings.save();
if (ImGui::Checkbox("Disable Phone Calls", g_settings.options["disable_phone"].get<bool*>()))
g_settings.save();
ImGui::EndTabItem();
}
}