diff options
| author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-04-05 02:44:01 +0000 |
|---|---|---|
| committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-04-05 02:44:01 +0000 |
| commit | 29e18caacff0fe07736c6652ec75267fce6c9aff (patch) | |
| tree | 5b081711866989d18f7d9774864a9b716e6b1180 /apps/gui/wps_parser.c | |
| parent | 2aad3c05f3936c3ecad6b2f67da83a44fcc2a06a (diff) | |
| download | rockbox-29e18caacff0fe07736c6652ec75267fce6c9aff.zip rockbox-29e18caacff0fe07736c6652ec75267fce6c9aff.tar.gz rockbox-29e18caacff0fe07736c6652ec75267fce6c9aff.tar.bz2 rockbox-29e18caacff0fe07736c6652ec75267fce6c9aff.tar.xz | |
Allow subline timeout values to be changed dynamically in the WPS (e.g. by using conditionals).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13026 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/wps_parser.c')
| -rw-r--r-- | apps/gui/wps_parser.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/gui/wps_parser.c b/apps/gui/wps_parser.c index 07a1df6..321286f 100644 --- a/apps/gui/wps_parser.c +++ b/apps/gui/wps_parser.c @@ -493,13 +493,6 @@ static int parse_subline_timeout(const char *wps_token, struct wps_data *wps_dat if (have_tenth == false) val *= 10; - if (val > 0) - { - int line = wps_data->num_lines; - int subline = wps_data->num_sublines[line]; - wps_data->time_mult[line][subline] = val; - } - wps_data->tokens[wps_data->num_tokens].value.i = val; return skip; } |