diff --git a/UnleashedRecomp/kernel/imports.cpp b/UnleashedRecomp/kernel/imports.cpp index 552bdc3d..d350b318 100644 --- a/UnleashedRecomp/kernel/imports.cpp +++ b/UnleashedRecomp/kernel/imports.cpp @@ -1356,7 +1356,7 @@ void KeQuerySystemTime(be* time) int64_t currentTime100ns = std::chrono::duration_cast>>(timeSinceEpoch).count(); currentTime100ns += FILETIME_EPOCH_DIFFERENCE; - *time = ((currentTime100ns & 0xFFFFFFFF) << 32) | (currentTime100ns & 0xFFFFFFFF); + *time = currentTime100ns; } void RtlTimeToTimeFields()