Initialize system handle in HLE Ngs2 library (#3137)

This commit is contained in:
kalaposfos13
2025-06-21 19:30:49 +02:00
committed by GitHub
parent 2d335f436c
commit 54163ffaa5

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;
}