mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed handling LIRC events in case repeated events are lost
This commit is contained in:
		
							
								
								
									
										3
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -7813,8 +7813,9 @@ Video Disk Recorder Revision History | ||||
| - Fixed a crash in the LCARS skin's main menu in case there is no current channel | ||||
|   (reported by Dominique Dumont). | ||||
|  | ||||
| 2013-08-21: Version 2.0.3 | ||||
| 2013-08-22: Version 2.0.3 | ||||
|  | ||||
| - Fixed asserting free disk space in the cutter. | ||||
| - No longer trying to delete old recordings in AssertFreeDiskSpace() if the given | ||||
|   Priority is less than 1. | ||||
| - Fixed handling LIRC events in case repeated events are lost. | ||||
|   | ||||
							
								
								
									
										3
									
								
								lirc.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								lirc.c
									
									
									
									
									
								
							| @@ -6,7 +6,7 @@ | ||||
|  * | ||||
|  * LIRC support added by Carsten Koch <Carsten.Koch@icem.de>  2000-06-16. | ||||
|  * | ||||
|  * $Id: lirc.c 2.5 2013/02/11 15:25:42 kls Exp $ | ||||
|  * $Id: lirc.c 2.5.1.1 2013/08/22 09:36:49 kls Exp $ | ||||
|  */ | ||||
|  | ||||
| #include "lirc.h" | ||||
| @@ -111,6 +111,7 @@ void cLircRemote::Action(void) | ||||
|            else if (LastTime.Elapsed() < (uint)Setup.RcRepeatDelta) | ||||
|               continue; // skip same keys coming in too fast | ||||
|            else { | ||||
|               pressed = true; | ||||
|               repeat = true; | ||||
|               timeout = Delta * 10 / 9; | ||||
|               } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user