summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2004-01-14 00:13:04 +0000
committerBjörn Stenberg <bjorn@haxx.se>2004-01-14 00:13:04 +0000
commita108ec2ebd237835a688ae5c82c90e07607219ae (patch)
tree17c0af92368ee76d16cfdc2162aadbb7f103d926 /apps/playlist_viewer.c
parent50b6358272eaf1f255bcb430766e6fc9e26810d3 (diff)
Added Benjamin Metzlers bookmarking feature (patch #669440)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4227 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index fe792e9bbb..00da973732 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -80,7 +80,7 @@ struct playlist_viewer_info {
int char_width; /* Width (in pixels) of a character */
int num_tracks; /* Number of tracks in playlist */
- short current_playing_track;/* Index of current playing track */
+ int current_playing_track; /* Index of current playing track */
int num_loaded; /* Number of track entries loaded in viewer */
int first_index; /* Index of first loaded track */
@@ -643,7 +643,7 @@ bool playlist_viewer(void)
while (!exit)
{
- short track;
+ int track;
/* Timeout so we can determine if play status has changed */
button = button_get_w_tmo(HZ/2);