ps2, minor audio and gfx fixes

This commit is contained in:
kub 2024-02-14 23:41:24 +01:00
parent 4abc40d56b
commit 3eb1d64585
3 changed files with 9 additions and 11 deletions

View file

@ -181,7 +181,7 @@ unsigned int plat_get_ticks_ms(void)
ret = (unsigned)tv.tv_sec * 1000;
/* approximate /= 1000 */
ret += ((unsigned)tv.tv_usec * 4195) >> 22;
ret += ((unsigned)tv.tv_usec * 4194) >> 22;
return ret;
}