diff --git a/nx/source/services/fspr.c b/nx/source/services/fspr.c index 5dce125d..8afbf2cc 100644 --- a/nx/source/services/fspr.c +++ b/nx/source/services/fspr.c @@ -69,7 +69,7 @@ Result fsprUnregisterProgram(u64 pid) { } Result fsprSetCurrentProcess(void) { - if(hosversionBefore(4,0,0)) + if (hosversionBefore(4,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); u64 pid_placeholder = 0; @@ -78,7 +78,7 @@ Result fsprSetCurrentProcess(void) { } Result fsprSetEnabledProgramVerification(bool enabled) { - if(hosversionAtLeast(10,0,0)) + if (hosversionAtLeast(10,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); const u8 in = enabled != 0; diff --git a/nx/source/services/ldr.c b/nx/source/services/ldr.c index bbfac2d9..e2fb271a 100644 --- a/nx/source/services/ldr.c +++ b/nx/source/services/ldr.c @@ -94,7 +94,7 @@ Result ldrPmUnpinProgram(u64 pin_id) { } Result ldrPmSetEnabledProgramVerification(bool enabled) { - if(hosversionBefore(10,0,0)) + if (hosversionBefore(10,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); const u8 in = enabled != 0;