doc fixes, added irx load error

This commit is contained in:
Sandro Sobczyński
2020-11-03 21:48:59 +01:00
parent 9e3ed74b45
commit 52518540f3
5 changed files with 13 additions and 7 deletions
+4
View File
@@ -78,7 +78,11 @@ void Audio::loadModules()
{
PRINT_LOG("Modules loading started (LIBSD, AUDSRV)");
ret = SifLoadModule("rom0:LIBSD", 0, NULL);
if (ret == -203)
PRINT_ERR("LIBSD loading failed!");
ret = SifLoadModule("host:AUDSRV.IRX", 0, NULL);
if (ret == -203)
PRINT_ERR("AUDSRV.IRX loading failed!");
PRINT_LOG("Modules loaded");
}