From 09a60ffba489787ba35034cac945ab71934ad609 Mon Sep 17 00:00:00 2001 From: Maurice Heumann Date: Thu, 16 Feb 2023 19:38:13 +0100 Subject: [PATCH] Add ASLR fix --- src/client/component/client_patches.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/component/client_patches.cpp b/src/client/component/client_patches.cpp index 44ad6b8d..6d21ddcd 100644 --- a/src/client/component/client_patches.cpp +++ b/src/client/component/client_patches.cpp @@ -3,6 +3,7 @@ #include "scheduler.hpp" +#include #include #include @@ -47,7 +48,7 @@ namespace client_patches fix_amd_cpu_stuttering(); // Kill microphones for now - utils::hook::set(0x15AAEB254, mixer_open_stub); + utils::hook::set(0x15AAEB254_g, mixer_open_stub); } }; }