This commit is contained in:
AtelierWindows\SilicaAndPina 2019-02-04 00:57:24 +13:00
parent 3c4ac97316
commit f0277c2a2b
1 changed files with 2 additions and 1 deletions

View File

@ -53,9 +53,10 @@ int getTimePatched(unsigned int* timestamp)
ret = TAI_CONTINUE(int, ref_hook,timestamp);
if(spoofTime)
{
printf("[TROPHAXSE] Faking timestamp to %x%x",fakeTime[1],fakeTime[0]);
printf("[TROPHAXSE] Faking timestamp to %x%x and Return 0",fakeTime[1],fakeTime[0]);
timestamp[0] = fakeTime[0];
timestamp[1] = fakeTime[1];
return 0;
}
return ret;
}