From 7269e28f9a6fb5e0c4c2d8617b76b44757562863 Mon Sep 17 00:00:00 2001 From: 9000h <3009073+9000h@users.noreply.github.com> Date: Mon, 28 Oct 2019 15:49:03 +0100 Subject: [PATCH] Update softhdcuvid.cpp --- softhdcuvid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softhdcuvid.cpp b/softhdcuvid.cpp index 9fd4f4b..8018901 100644 --- a/softhdcuvid.cpp +++ b/softhdcuvid.cpp @@ -2330,7 +2330,6 @@ eOSState cSoftHdMenu::ProcessKey(eKeys key) //dsyslog("[softhddev]%s: %x\n", __FUNCTION__, key); switch (HotkeyState) { - case HksInitial: // initial state, waiting for hot key if (key == kBlue) { HotkeyState = HksBlue; // blue button @@ -2365,6 +2364,7 @@ eOSState cSoftHdMenu::ProcessKey(eKeys key) return osEnd; } HotkeyState = HksInitial; + break; case HksRed: // red and first number if (k0 <= key && key <= k9) { HotkeyCode = 100 + key - k0;