Changeset 9af94c5ad9bf92435142a9c7275e6dd2155649e7
- Timestamp:
- 11/09/03 19:06:11
(5 years ago)
- Author:
- Rocky Bernstein <rocky@videolan.org>
- git-committer:
- Rocky Bernstein <rocky@videolan.org> 1068401171 +0000
- git-parent:
[1601147f60744e780e7262dba227ad5e90fd628a]
- git-author:
- Rocky Bernstein <rocky@videolan.org> 1068401171 +0000
- Message:
Allow return to have a numeric prefix too.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc7897a2 |
r9af94c5 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2002 VideoLAN |
|---|
| 5 | | * $Id: intf.c,v 1.2 2003/11/09 00:52:32 rocky Exp $ |
|---|
| | 5 | * $Id: intf.c,v 1.3 2003/11/09 18:06:11 rocky Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Rocky Bernstein <rocky@panix.com> |
|---|
| … | … | |
| 186 | 186 | case ACTIONID_NAV_UP: |
|---|
| 187 | 187 | dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_UP - return" ); |
|---|
| 188 | | vcdplayer_play_return( p_input ); |
|---|
| | 188 | do { |
|---|
| | 189 | vcdplayer_play_return( p_input ); |
|---|
| | 190 | } while (number_addend-- > 0); |
|---|
| 189 | 191 | break; |
|---|
| 190 | 192 | |
|---|