diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-12-19 17:22:13 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-12-19 17:22:13 +0100 |
commit | ce8369251cf64919a7f1a8333201d87f92fb2f14 (patch) | |
tree | 4408fc6acf767b31a4b7ad395cc457567f331e58 /rcu.c | |
parent | 1d3495a0f09b1949efbba553a3d2a152ad2be617 (diff) | |
download | vdr-ce8369251cf64919a7f1a8333201d87f92fb2f14.tar.gz vdr-ce8369251cf64919a7f1a8333201d87f92fb2f14.tar.bz2 |
Removed delay_ms(), using cCondWait::SleepMs() instead
Diffstat (limited to 'rcu.c')
-rw-r--r-- | rcu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: rcu.c 1.6 2003/10/18 11:34:30 kls Exp $ + * $Id: rcu.c 1.7 2004/12/19 17:19:34 kls Exp $ */ #include "rcu.h" @@ -295,7 +295,7 @@ bool cRcuRemote::DetectCode(unsigned char *Code) sprintf(buf, "C0D%c", *Code); String(buf); SetCode(*Code); - delay_ms(2 * REPEATDELAY); + cCondWait::SleepMs(2 * REPEATDELAY); if (receivedCommand) { SetMode(modeB); String("----"); |