mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the size of the key queue to avoid problems with long key macros
This commit is contained in:
parent
f2c619568f
commit
24da36dd8d
1
HISTORY
1
HISTORY
@ -4968,3 +4968,4 @@ Video Disk Recorder Revision History
|
||||
Petri Hintukainen).
|
||||
- Fixed handling plugins from cRemote::PutMacro() and cRemote::CallPlugin()
|
||||
(based on a patch from Petri Hintukainen).
|
||||
- Increased the size of the key queue to avoid problems with long key macros.
|
||||
|
4
remote.h
4
remote.h
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user