CRCInput::set_rc_hw: Fix device check for cs hd2

This commit is contained in:
M. Liebmann
2017-02-22 06:21:38 +01:00
parent f45456d7a8
commit 5cac45ccb8

View File

@@ -1822,7 +1822,11 @@ void CRCInput::set_rc_hw(ir_protocol_t ir_protocol, unsigned int ir_address)
} }
int fd = -1; int fd = -1;
for (std::vector<in_dev>::iterator it = indev.begin(); it != indev.end(); ++it) { for (std::vector<in_dev>::iterator it = indev.begin(); it != indev.end(); ++it) {
if ((*it).path == "/dev/input/nevis_ir") { if (((*it).path == "/dev/input/nevis_ir")
#ifdef BOXMODEL_CS_HD2
|| ((*it).path == "/dev/input/input0")
#endif
){
fd = (*it).fd; fd = (*it).fd;
break; break;
} }