Use gameID and emulated timestamp for Avi/Wav dump filenames.

This commit is contained in:
LunaMoo 2017-11-14 00:25:49 +01:00
parent a0f1276a5c
commit 99ab8dfc99
4 changed files with 26 additions and 4 deletions

View file

@ -171,3 +171,7 @@ u32 sceKernelLibcGettimeofday(u32 timeAddr, u32 tzAddr)
hleReSchedule("libc timeofday");
return 0;
}
u32 returnEmulatedTime() {
return (u32)start_time + (u32)(CoreTiming::GetGlobalTimeUs() / 1000000ULL);
}