1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-09-28 14:40:46 +00:00

Comment out psc code

This commit is contained in:
cathery 2020-03-26 06:12:19 +03:00
parent a4c6008ce7
commit 9ca309a621

View File

@ -55,7 +55,7 @@ extern "C" void __appInit(void)
if (ams::hos::GetVersion() >= ams::hos::Version_700)
R_ABORT_UNLESS(hiddbgAttachHdlsWorkBuffer());
R_ABORT_UNLESS(usbHsInitialize());
R_ABORT_UNLESS(pscmInitialize());
//R_ABORT_UNLESS(pscmInitialize());
R_ABORT_UNLESS(fsInitialize());
});
@ -64,7 +64,7 @@ extern "C" void __appInit(void)
extern "C" void __appExit(void)
{
pscmExit();
//pscmExit();
usbHsExit();
hiddbgReleaseHdlsWorkBuffer();
hiddbgExit();
@ -81,14 +81,14 @@ int main(int argc, char *argv[])
config::Initialize();
controllers::Initialize();
usb::Initialize();
psc::Initialize();
//psc::Initialize();
while (true)
{
svcSleepThread(1e+8L);
}
psc::Exit();
//psc::Exit();
usb::Exit();
controllers::Exit();
config::Exit();