From 3b94c82ed2e7c852eb461ddb52f1ff1926844b7c Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 31 May 2020 02:25:37 +0200 Subject: [PATCH] relocator: add missing `KiPhysicalToEffectiveUncached` address --- relocator/src/utils/function_patcher.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/relocator/src/utils/function_patcher.cpp b/relocator/src/utils/function_patcher.cpp index 417c5bd..207c2c8 100644 --- a/relocator/src/utils/function_patcher.cpp +++ b/relocator/src/utils/function_patcher.cpp @@ -251,6 +251,8 @@ uint32_t GetAddressOfFunction(const char *functionName, uint32_t library) { return 0xffee0aac; }else if(strcmp(functionName, "KiPhysicalToEffectiveCached") == 0){ return 0xffee0a3c; + }else if(strcmp(functionName, "KiPhysicalToEffectiveUncached") == 0){ + return 0xffee0a80; }else if(strcmp(functionName, "IPCKDriver_ValidatePhysicalAddress") == 0){ return 0xfff0cb5c; }else if(strcmp(functionName, "KiIsEffectiveRangeValid") == 0){