1
0
mirror of https://github.com/jojo61/vdr-plugin-softhdcuvid.git synced 2023-10-10 13:37:41 +02:00

Merge pull request #14 from 9000h/fix-missing-break

fix missing break
This commit is contained in:
jojo61 2019-10-28 19:59:40 +01:00 committed by GitHub
commit 2d3a7339e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2364,6 +2364,7 @@ eOSState cSoftHdMenu::ProcessKey(eKeys key)
return osEnd; return osEnd;
} }
HotkeyState = HksInitial; HotkeyState = HksInitial;
break;
case HksRed: // red and first number case HksRed: // red and first number
if (k0 <= key && key <= k9) { if (k0 <= key && key <= k9) {
HotkeyCode = 100 + key - k0; HotkeyCode = 100 + key - k0;