From c1b2c4c66972520c0977fff4d9b066a299faadee Mon Sep 17 00:00:00 2001 From: mjkzy Date: Tue, 28 Jun 2022 00:42:34 -0500 Subject: [PATCH] fix a future crash report --- src/client/component/patches.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/component/patches.cpp b/src/client/component/patches.cpp index 192ce0aa..31f0a07b 100644 --- a/src/client/component/patches.cpp +++ b/src/client/component/patches.cpp @@ -325,9 +325,6 @@ namespace patches dvars::override::register_float("gpad_stick_pressed", 0.4f, 0, 1, game::DVAR_FLAG_SAVED); dvars::override::register_float("gpad_stick_pressed_hysteresis", 0.1f, 0, 1, game::DVAR_FLAG_SAVED); - // Prevent the game from modifying Windows microphone volume (since voice chat isn't used) - utils::hook::set(0x5BEEA0_b, 0xC3); // Mixer_SetWaveInRecordLevels - if (!game::environment::is_sp()) { patch_mp(); @@ -419,6 +416,9 @@ namespace patches // Fix gamepad related crash cl_gamepad_scrolling_buttons_hook.create(0x133210_b, cl_gamepad_scrolling_buttons_stub); + + // Prevent the game from modifying Windows microphone volume (since voice chat isn't used) + utils::hook::set(0x5BEEA0_b, 0xC3); // Mixer_SetWaveInRecordLevels } }; }