pgl: style nitpick

This commit is contained in:
Michael Scire 2022-03-22 10:29:18 -07:00
parent 7498958a06
commit f466f9e825

View file

@ -156,19 +156,23 @@ namespace ams::pgl::srv {
void StartServer() { void StartServer() {
/* Enable extra application threads, if we should. */ /* Enable extra application threads, if we should. */
u8 enable_application_extra_thread; {
const size_t sz = settings::fwdbg::GetSettingsItemValue(std::addressof(enable_application_extra_thread), sizeof(enable_application_extra_thread), "application_extra_thread", "enable_application_extra_thread"); u8 enable_application_extra_thread;
if (sz == sizeof(enable_application_extra_thread) && enable_application_extra_thread != 0) { const size_t sz = settings::fwdbg::GetSettingsItemValue(std::addressof(enable_application_extra_thread), sizeof(enable_application_extra_thread), "application_extra_thread", "enable_application_extra_thread");
/* NOTE: Nintendo does not check that this succeeds. */ if (sz == sizeof(enable_application_extra_thread) && enable_application_extra_thread != 0) {
pm::shell::BoostApplicationThreadResourceLimit(); /* NOTE: Nintendo does not check that this succeeds. */
pm::shell::BoostApplicationThreadResourceLimit();
}
} }
/* Enable extra system threads, if we should. */ /* Enable extra system threads, if we should. */
u8 enable_system_extra_thread; {
const size_t sz = settings::fwdbg::GetSettingsItemValue(std::addressof(enable_system_extra_thread), sizeof(enable_system_extra_thread), "application_extra_thread", "enable_system_extra_thread"); u8 enable_system_extra_thread;
if (sz == sizeof(enable_system_extra_thread) && enable_system_extra_thread != 0) { const size_t sz = settings::fwdbg::GetSettingsItemValue(std::addressof(enable_system_extra_thread), sizeof(enable_system_extra_thread), "application_extra_thread", "enable_system_extra_thread");
/* NOTE: Nintendo does not check that this succeeds. */ if (sz == sizeof(enable_system_extra_thread) && enable_system_extra_thread != 0) {
pm::shell::BoostSystemThreadResourceLimit(); /* NOTE: Nintendo does not check that this succeeds. */
pm::shell::BoostSystemThreadResourceLimit();
}
} }
/* Register service session. */ /* Register service session. */