From 6613c9967d07db7f1a4c19086abc87614c535fa5 Mon Sep 17 00:00:00 2001 From: thecozies <79979276+thecozies@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:38:35 -0500 Subject: [PATCH] bugfix: load 'low_health_beeps' key from config --- src/game/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/config.cpp b/src/game/config.cpp index 062b7f8..d030b8a 100644 --- a/src/game/config.cpp +++ b/src/game/config.cpp @@ -302,7 +302,7 @@ void load_sound_config(const std::filesystem::path& path) { recomp::reset_sound_settings(); call_if_key_exists(recomp::set_bgm_volume, config_json, "bgm_volume"); - call_if_key_exists(recomp::set_low_health_beeps_enabled, config_json, "set_low_health_beeps_enabled"); + call_if_key_exists(recomp::set_low_health_beeps_enabled, config_json, "low_health_beeps"); } void recomp::load_config() {