diff --git a/README.md b/README.md index df270a29..c972c07f 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,10 @@ This plugin fixes some Cyberpunk 2077 issues. -Currently it only fixes the AMD performance issues due to an Intel TBB bug. +Currently it only fixes the AMD performance issues due to an OpenGPU condition. ## Special Thanks * [pseudo-version-dll](https://github.com/t-mat/pseudo-version-dll) -* [UnhingedDoork](https://www.reddit.com/r/Amd/comments/kbp0np/cyberpunk_2077_seems_to_ignore_smt_and_mostly/gfjf1vo/?utm_source=reddit&utm_medium=web2x&context=3) \ No newline at end of file +* [UnhingedDoork](https://www.reddit.com/r/Amd/comments/kbp0np/cyberpunk_2077_seems_to_ignore_smt_and_mostly/gfjf1vo/?utm_source=reddit&utm_medium=web2x&context=3) +* [CookiePLMonster](https://www.reddit.com/r/pcgaming/comments/kbsywg/cyberpunk_2077_used_an_intel_c_compiler_which/gfknein/?utm_source=reddit&utm_medium=web2x&context=3) \ No newline at end of file diff --git a/cyberpunk_amd_patch/src/dllmain.cpp b/cyberpunk_amd_patch/src/dllmain.cpp index c7dc8b65..239a5cad 100644 --- a/cyberpunk_amd_patch/src/dllmain.cpp +++ b/cyberpunk_amd_patch/src/dllmain.cpp @@ -32,7 +32,7 @@ void Patch(HMODULE mod) { DWORD oldProtect = 0; VirtualProtect(pMemoryItor, 8, PAGE_EXECUTE_WRITECOPY, &oldProtect); - *pMemoryItor = 0x74; + *pMemoryItor = 0xEB; VirtualProtect(pMemoryItor, 8, oldProtect, nullptr); return;