mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
erpt: launch sprofile only on 13.0.0+
This commit is contained in:
parent
2554e0c9f1
commit
91c3ed9704
1 changed files with 7 additions and 4 deletions
|
@ -201,11 +201,14 @@ int main(int argc, char **argv)
|
||||||
/* Start the erpt server. */
|
/* Start the erpt server. */
|
||||||
R_ABORT_UNLESS(erpt::srv::InitializeAndStartService());
|
R_ABORT_UNLESS(erpt::srv::InitializeAndStartService());
|
||||||
|
|
||||||
|
/* Launch sprofile on 13.0.0+ */
|
||||||
|
if (hos::GetVersion() >= hos::Version_13_0_0) {
|
||||||
/* Initialize the sprofile server. */
|
/* Initialize the sprofile server. */
|
||||||
sprofile::srv::Initialize();
|
sprofile::srv::Initialize();
|
||||||
|
|
||||||
/* Start the sprofile ipc server. */
|
/* Start the sprofile ipc server. */
|
||||||
sprofile::srv::StartIpcServer();
|
sprofile::srv::StartIpcServer();
|
||||||
|
}
|
||||||
|
|
||||||
/* Wait forever. */
|
/* Wait forever. */
|
||||||
erpt::srv::Wait();
|
erpt::srv::Wait();
|
||||||
|
|
Loading…
Reference in a new issue