1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-06-29 00:48:43 +00:00

Cosmetic changes

This commit is contained in:
cathery 2020-03-26 06:11:36 +03:00
parent 7cab2e1e89
commit 317d695dfb
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
"title_id": "0x690000000000000D",
"title_id_range_min": "0x690000000000000D",
"title_id_range_max": "0x690000000000000D",
"main_thread_stack_size": "0x00004000",
"main_thread_stack_size": "0x4000",
"main_thread_priority": 44,
"default_cpu_id": 3,
"process_category": 0,

View File

@ -48,7 +48,7 @@ namespace syscon::psc
}
Result Initialize()
{
R_TRY(pscmGetPmModule(&pscModule, static_cast<PscPmModuleId>(126), dependencies, sizeof(dependencies) / sizeof(uint16_t), true));
R_TRY(pscmGetPmModule(&pscModule, PscPmModuleId(126), dependencies, sizeof(dependencies) / sizeof(uint16_t), true));
pscModuleWaiter = waiterForEvent(&pscModule.event);
is_psc_thread_running = true;
return g_psc_thread.Start().GetValue();