video_core: Add image support

This commit is contained in:
raphaelthegreat 2024-05-27 01:07:46 +03:00
parent 729e166cd3
commit d59b102b6f
48 changed files with 1264 additions and 259 deletions

View file

@ -35,7 +35,8 @@ static void* PS4_SYSV_ABI sceKernelGetProcParam() {
}
int32_t PS4_SYSV_ABI sceKernelReleaseDirectMemory(off_t start, size_t len) {
UNREACHABLE();
auto* memory = Core::Memory::Instance();
memory->Free(start, len);
return 0;
}