diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-15 12:39:20 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-15 12:39:20 +0200 |
commit | 20019e7ce51b9e14ce28f96b263b76e6becd4184 (patch) | |
tree | 183c0f3bac333786eb71f6825ce40412b8cb7ab4 /dvbapi.c | |
parent | 5c574ffb7bba34506479247bf6d924e090bc2d10 (diff) | |
download | vdr-20019e7ce51b9e14ce28f96b263b76e6becd4184.tar.gz vdr-20019e7ce51b9e14ce28f96b263b76e6becd4184.tar.bz2 |
Added support for LIRC remote control0.0.6
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.10 2000/05/27 14:07:17 kls Exp $ + * $Id: dvbapi.c 1.11 2000/06/24 14:03:19 kls Exp $ */ #include "dvbapi.h" @@ -1054,7 +1054,7 @@ cDvbApi::cDvbApi(const char *FileName) if (videoDev < 0) LOG_ERROR; cols = rows = 0; -#if defined(DEBUG_OSD) || defined(DEBUG_REMOTE) +#if defined(DEBUG_OSD) || defined(REMOTE_KBD) initscr(); keypad(stdscr, TRUE); nonl(); @@ -1080,7 +1080,7 @@ cDvbApi::~cDvbApi() StopRecord(); close(videoDev); } -#if defined(DEBUG_REMOTE) || defined(DEBUG_OSD) +#if defined(DEBUG_OSD) || defined(REMOTE_KBD) endwin(); #endif delete replayTitle; |