diff options
author | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-02 20:01:51 +0100 |
---|---|---|
committer | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-02 20:01:51 +0100 |
commit | 653ec3852b6edf26faa84c98a67538f9d4ae64b4 (patch) | |
tree | d01845c0e4bbd36047704e6253de2b8ab1ec7574 | |
parent | cb33be9e2ee7bad9b1afd082659b66fb83bdd489 (diff) | |
download | vdr-plugin-inputdev-653ec3852b6edf26faa84c98a67538f9d4ae64b4.tar.gz vdr-plugin-inputdev-653ec3852b6edf26faa84c98a67538f9d4ae64b4.tar.bz2 |
increased magic key timeout
-rw-r--r-- | inputdev.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inputdev.cc b/inputdev.cc index 5774bd6..ce81561 100644 --- a/inputdev.cc +++ b/inputdev.cc @@ -82,7 +82,7 @@ static bool check_clock_gettime(void) } bool const MagicState::IS_SUPPORTED_ = check_clock_gettime(); -struct timespec const MagicState::TIMEOUT = { 1, 500000000 }; +struct timespec const MagicState::TIMEOUT = { 2, 500000000 }; int MagicState::compare(struct timespec const &a, struct timespec const &b) { |