fix if spacing

This commit is contained in:
Michael Scire 2020-04-14 10:00:11 -07:00 committed by fincs
parent e09ce419ac
commit 7e581f6110
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;