Initialize system handle in HLE Ngs2 library

This commit is contained in:
kalaposfos13 2025-06-21 15:18:25 +02:00
parent 2d335f436c
commit dddc544667

View File

@ -100,6 +100,11 @@ s32 SystemSetupCore(StackBuffer* stackBuffer, const OrbisNgs2SystemOption* optio
return ORBIS_NGS2_ERROR_INVALID_SAMPLE_RATE;
}
if (outSystem) {
// dummy handle
outSystem->systemHandle = 1;
}
return ORBIS_OK;
}