From 8259076d9f300a5f76cd5083f6a4610befaed51f Mon Sep 17 00:00:00 2001
From: Rocky Bernstein <rocky@videolan.org>
Date: Sun, 23 Nov 2003 04:56:08 +0000
Subject: [PATCH] Bug in processing numeric entry - passed wrong value.

---
 modules/access/vcdx/intf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/access/vcdx/intf.c b/modules/access/vcdx/intf.c
index 357807abdd34..6d15d10a3bff 100644
--- a/modules/access/vcdx/intf.c
+++ b/modules/access/vcdx/intf.c
@@ -2,7 +2,7 @@
  * intf.c: Video CD interface to handle user interaction and still time
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: intf.c,v 1.4 2003/11/23 03:58:33 rocky Exp $
+ * $Id: intf.c,v 1.5 2003/11/23 04:56:08 rocky Exp $
  *
  * Authors: Rocky Bernstein <rocky@panix.com>
  *   from DVD code by Stéphane Borel <stef@via.ecp.fr>
@@ -204,7 +204,7 @@ static void RunIntf( intf_thread_t *p_intf )
 
 		if ( vcdplayer_pbc_is_on( p_vcd ) && number_addend != 0 ) {
 		  lid_t next_num=vcdinfo_selection_get_lid(p_vcd->vcd, 
-							   itemid.num,
+							   p_vcd->cur_lid,
 							   number_addend);
 		  if (VCDINFO_INVALID_LID != next_num) {
 		    itemid.num  = next_num;
-- 
GitLab