summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2021-10-21 22:42:01 +0200
committerChristian Soffke <christian.soffke@gmail.com>2021-10-21 22:42:01 +0200
commit1697b1369353ecfbd8c8b640e35b908e01126fc4 (patch)
tree658f636ce8def9fd2716ff823b2d2a420ebb2894 /apps/playlist_viewer.c
parentcf96a4d386324884ac9a69da66aabd9e262c7078 (diff)
downloadrockbox-1697b1369353ecfbd8c8b640e35b908e01126fc4.tar.gz
rockbox-1697b1369353ecfbd8c8b640e35b908e01126fc4.zip
whitespace fixes
Change-Id: I86880595b78e3cae62361c32ca57cf6f6a4ad963
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index e0e2e787cd..21b61d4a67 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -98,7 +98,7 @@ struct playlist_viewer {
98 int selected_track; /* The selected track, relative (first is 0) */ 98 int selected_track; /* The selected track, relative (first is 0) */
99 int moving_track; /* The track to move, relative (first is 0) 99 int moving_track; /* The track to move, relative (first is 0)
100 or -1 if nothing is currently being moved */ 100 or -1 if nothing is currently being moved */
101 int moving_playlist_index; /* Playlist-relative index (as opposed to 101 int moving_playlist_index; /* Playlist-relative index (as opposed to
102 viewer-relative index) of moving track */ 102 viewer-relative index) of moving track */
103 struct playlist_buffer buffer; 103 struct playlist_buffer buffer;
104}; 104};
@@ -295,7 +295,7 @@ static struct playlist_entry * playlist_buffer_get_track(struct playlist_buffer
295 the name_buffer is probably too small to store enough 295 the name_buffer is probably too small to store enough
296 titles to fill the screen, and preload data in the short 296 titles to fill the screen, and preload data in the short
297 direction. 297 direction.
298 298
299 If this happens then scrolling performance will probably 299 If this happens then scrolling performance will probably
300 be quite low, but it's better then having Data Abort errors */ 300 be quite low, but it's better then having Data Abort errors */
301 playlist_buffer_load_entries(pb, index, FORWARD); 301 playlist_buffer_load_entries(pb, index, FORWARD);
@@ -319,7 +319,7 @@ static bool playlist_viewer_init(struct playlist_viewer * viewer,
319 } 319 }
320 if (!have_list && (playlist_amount() > 0)) 320 if (!have_list && (playlist_amount() > 0))
321 { 321 {
322 /*If dynamic playlist still exists, view it anyway even 322 /*If dynamic playlist still exists, view it anyway even
323 if playback has reached the end of the playlist */ 323 if playback has reached the end of the playlist */
324 have_list = true; 324 have_list = true;
325 } 325 }