Timers scaling and fixes

This commit is contained in:
Eladash 2019-07-14 06:55:11 +03:00 committed by Ani
parent d17be2c2ec
commit 85b1152e29
27 changed files with 160 additions and 162 deletions

View file

@ -799,7 +799,7 @@ namespace rsx
u64 thread::timestamp()
{
// Get timestamp, and convert it from microseconds to nanoseconds
const u64 t = get_system_time() * 1000;
const u64 t = get_guest_system_time() * 1000;
if (t != timestamp_ctrl)
{
timestamp_ctrl = t;