mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling of REMOTE=NONE
This commit is contained in:
parent
bb03fa2a0c
commit
484a3afa89
8
vdr.c
8
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.51 2001/02/04 11:51:11 kls Exp $
|
* $Id: vdr.c 1.52 2001/02/04 19:41:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -180,9 +180,9 @@ int main(int argc, char *argv[])
|
|||||||
Channels.Load(AddDirectory(ConfigDirectory, "channels.conf"));
|
Channels.Load(AddDirectory(ConfigDirectory, "channels.conf"));
|
||||||
Timers.Load(AddDirectory(ConfigDirectory, "timers.conf"));
|
Timers.Load(AddDirectory(ConfigDirectory, "timers.conf"));
|
||||||
Commands.Load(AddDirectory(ConfigDirectory, "commands.conf"));
|
Commands.Load(AddDirectory(ConfigDirectory, "commands.conf"));
|
||||||
#ifdef REMOTE_LIRC
|
#if defined(REMOTE_LIRC)
|
||||||
Keys.SetDummyValues();
|
Keys.SetDummyValues();
|
||||||
#else
|
#elif !defined(REMOTE_NONE)
|
||||||
bool KeysLoaded = Keys.Load(AddDirectory(ConfigDirectory, KEYS_CONF));
|
bool KeysLoaded = Keys.Load(AddDirectory(ConfigDirectory, KEYS_CONF));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -200,7 +200,7 @@ int main(int argc, char *argv[])
|
|||||||
// User interface:
|
// User interface:
|
||||||
|
|
||||||
Interface = new cInterface(SVDRPport);
|
Interface = new cInterface(SVDRPport);
|
||||||
#ifndef REMOTE_LIRC
|
#if !defined(REMOTE_LIRC) && !defined(REMOTE_NONE)
|
||||||
if (!KeysLoaded)
|
if (!KeysLoaded)
|
||||||
Interface->LearnKeys();
|
Interface->LearnKeys();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user