1
0
Fork 0
forked from len0rd/rockbox

* Fix the bug where subline separators were read as part of a string.

* Some cosmetic code changes, no other functional change (add a comment and rename some variables).


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13034 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-04-05 14:09:59 +00:00
parent 86c0e3a4ca
commit 9cf8960c85
2 changed files with 67 additions and 77 deletions

View file

@ -363,18 +363,6 @@ void print_line_info(struct wps_data *data)
}
DEBUGF("\n");
DEBUGF("subline time multipliers :\n");
for (line = 0; line < data->num_lines; line++)
{
DEBUGF("%2d. ", line);
for (subline = 0; subline < data->num_sublines[line]; subline++)
{
DEBUGF("%3d ", data->time_mult[line][subline]);
}
DEBUGF("\n");
}
}
void print_wps_strings(struct wps_data *data)