mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-06 03:12:15 +02:00
Fix spacing
This commit is contained in:
parent
8ba0da972a
commit
04d16200c4
@ -11,11 +11,13 @@ static u64 g_refCnt;
|
||||
|
||||
Result bpcInitialize(void)
|
||||
{
|
||||
Result rc = 0;
|
||||
atomicIncrement64(&g_refCnt);
|
||||
|
||||
if (serviceIsActive(&g_bpcSrv)) return 0;
|
||||
if (serviceIsActive(&g_bpcSrv))
|
||||
return 0;
|
||||
|
||||
|
||||
Result rc = 0;
|
||||
rc = smGetService(&g_bpcSrv, kernelAbove200() ? "bpc" : "bpc:c");
|
||||
|
||||
return rc;
|
||||
@ -24,10 +26,8 @@ Result bpcInitialize(void)
|
||||
void bpcExit(void)
|
||||
{
|
||||
if (atomicDecrement64(&g_refCnt) == 0)
|
||||
{
|
||||
serviceClose(&g_bpcSrv);
|
||||
}
|
||||
}
|
||||
|
||||
Result bpcShutdownSystem(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user