Fix for 1.0.0 firmware

This commit is contained in:
XorTroll 2018-08-01 00:49:49 +02:00 committed by GitHub
parent 0a77a95fae
commit 6af9fb0592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,8 +15,8 @@ Result bpcInitialize(void)
if (serviceIsActive(&g_bpcSrv)) return 0; if (serviceIsActive(&g_bpcSrv)) return 0;
Result rc = 0; Result rc = 0;
if(!kernelAbove100()) rc = smGetService(&g_bpcSrv, "bpc:c");
rc = smGetService(&g_bpcSrv, "bpc"); else rc = smGetService(&g_bpcSrv, "bpc");
return rc; return rc;
} }