mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-12 16:03:36 +02:00
rcinput: fix getKeyName for RC_none case
Origin commit data
------------------
Commit: eaec2224e1
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2017-08-20 (Sun, 20 Aug 2017)
This commit is contained in:
committed by
vanhofen
parent
b5fb6015dc
commit
8866526463
@@ -1682,9 +1682,14 @@ const char * CRCInput::getSpecialKeyName(const unsigned int key)
|
|||||||
|
|
||||||
std::string CRCInput::getKeyName(const unsigned int key)
|
std::string CRCInput::getKeyName(const unsigned int key)
|
||||||
{
|
{
|
||||||
std::string res(getKeyNameC(key & ~RC_Repeat));
|
std::string res;
|
||||||
if ((key & RC_Repeat) && res != "unknown")
|
if (key > RC_MaxRC)
|
||||||
res += " (long)";
|
res = getKeyNameC(key); /* will only resolve RC_nokey or "unknown" */
|
||||||
|
else {
|
||||||
|
res = (getKeyNameC(key & ~RC_Repeat));
|
||||||
|
if ((key & RC_Repeat) && res != "unknown")
|
||||||
|
res += " (long)";
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user