diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-10-14 11:47:32 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-10-14 11:47:32 +0200 |
commit | 24da36dd8d5fb823fef8a848943f5524850e868e (patch) | |
tree | 32b99580e9672632804b29eeec05f1a498328f4d /remote.h | |
parent | f2c619568fbd6a1c62fd0d0ee9c2a0f1c5702860 (diff) | |
download | vdr-24da36dd8d5fb823fef8a848943f5524850e868e.tar.gz vdr-24da36dd8d5fb823fef8a848943f5524850e868e.tar.bz2 |
Increased the size of the key queue to avoid problems with long key macros
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 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: remote.h 1.36 2006/10/14 10:56:50 kls Exp $ + * $Id: remote.h 1.37 2006/10/14 11:46:58 kls Exp $ */ #ifndef __REMOTE_H @@ -19,7 +19,7 @@ class cRemote : public cListObject { private: - enum { MaxKeys = MAXKEYSINMACRO }; + enum { MaxKeys = 2 * MAXKEYSINMACRO }; static eKeys keys[MaxKeys]; static int in; static int out; |