fixes for platform support for PSP: show fps, notices, CD leds

This commit is contained in:
kub 2021-02-10 22:55:30 +01:00
parent bfd6662370
commit b1b5f9c094
3 changed files with 45 additions and 23 deletions

View file

@ -321,8 +321,8 @@ end:
int _flush_cache (char *addr, const int size, const int op)
{
sceKernelDcacheWritebackAll();
//sceKernelDcacheWritebackRange(addr, size);
//sceKernelIcacheInvalidateRange(addr, size);
//sceKernelDcacheWritebackAll();
sceKernelDcacheWritebackRange(addr, size);
sceKernelIcacheInvalidateRange(addr, size);
return 0;
}