From f0277c2a2b4c610678d49be8be866f99513b9c48 Mon Sep 17 00:00:00 2001 From: "AtelierWindows\\SilicaAndPina" Date: Mon, 4 Feb 2019 00:57:24 +1300 Subject: [PATCH] 1.4 --- kernel/src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/src/main.c b/kernel/src/main.c index f97be3f..5b974d0 100644 --- a/kernel/src/main.c +++ b/kernel/src/main.c @@ -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; }