cs: fix launching of tio server

This commit is contained in:
Michael Scire 2021-07-29 01:15:02 -07:00 committed by SciresM
parent a595091be0
commit f2da92184b
3 changed files with 9 additions and 6 deletions

View file

@ -20,7 +20,7 @@ namespace ams::cs {
void InitializeTargetIoServer() {
/* Launch target io server. */
os::ProcessId process_id;
scs::LaunchProgram(std::addressof(process_id), ncm::SystemProgramId::DevServer, nullptr, 0, 0);
scs::LaunchProgram(std::addressof(process_id), ncm::ProgramLocation::Make(ncm::SystemProgramId::DevServer, ncm::StorageId::None), nullptr, 0, 0);
}
}