shithub: m8c

Download patch

ref: c2e62a62c47cf14fb488e3ae1aa20a9a957a471d
parent: fa044685c437e97e846b59681abd1933b35a456e
author: Keith Peters <kp@bit-101.com>
date: Tue Jan 28 09:36:53 EST 2025

key_toggle_audio was being assigned to key_jazz_dec_velocity

--- a/src/config.c
+++ b/src/config.c
@@ -319,7 +319,7 @@
   if (key_jazz_dec_velocity)
     conf->key_jazz_dec_velocity = SDL_atoi(key_jazz_dec_velocity);
   if (key_toggle_audio)
-    conf->key_jazz_dec_velocity = SDL_atoi(key_toggle_audio);
+    conf->key_toggle_audio = SDL_atoi(key_toggle_audio);
 }
 
 void read_gamepad_config(const ini_t *ini, config_params_s *conf) {
--