From af292bcdf97ab418ef4e31b55ecc710ef2774048 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 17 Feb 2024 00:33:44 +0100 Subject: Remove commented out code --- src/ahoy/gui.c | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/ahoy/gui.c b/src/ahoy/gui.c index d7514e9..17c01e4 100644 --- a/src/ahoy/gui.c +++ b/src/ahoy/gui.c @@ -146,31 +146,6 @@ readevnt(void) estate = ES_RESET; break; - // case SDLK_j: - // // 'j': Decrease color lerp rate - // if (config->color_lerp_rate > 0.1) - // config->color_lerp_rate -= 0.1; - // break; - // - // case SDLK_k: - // // 'k': Increase color lerp rate - // if (config->color_lerp_rate < 1.0) - // config->color_lerp_rate += 0.1; - // break; - // - // case SDLK_o: - // // 'o': Decrease Volume - // if (config->volume > 0) - // config->volume -= 500; - // break; - // - // case SDLK_p: - // // 'p': Increase Volume - // if (config->volume < INT16_MAX) - // config->volume += 500; - // break; - - // Map qwerty keys to CHIP8 keypad case SDLK_1: c8.kbd[0x1] = true; break; -- cgit v1.2.3