mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
fix if spacing
This commit is contained in:
parent
e09ce419ac
commit
7e581f6110
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user