Ticket #1676: AlbumSort-mythtv.patch
File AlbumSort-mythtv.patch, 1.4 KB (added by , 15 years ago) |
---|
-
libs/libmyth/lcddevice.h
121 121 MUSIC_SHUFFLE_NONE = 0, 122 122 MUSIC_SHUFFLE_RAND = 1, 123 123 MUSIC_SHUFFLE_SMART = 2, 124 MUSIC_SHUFFLE_ALBUM = 3 124 125 }; 125 126 126 127 static class LCD * Get(void); -
libs/libmyth/generictree.cpp
97 97 m_selected_subnode = NULL; 98 98 m_current_ordering_index = -1; 99 99 100 // Use 4here, because we know that's what mythmusic wants (limits resizing)101 m_attributes = new IntVector( 4);100 // Use 5 here, because we know that's what mythmusic wants (limits resizing) 101 m_attributes = new IntVector(5); 102 102 103 103 m_string = a_string; 104 104 m_int = an_int; -
programs/mythlcdserver/lcdprocclient.cpp
1895 1895 { 1896 1896 shuffle = "S:i "; 1897 1897 } 1898 else if (music_shuffle == 3) 1899 { 1900 shuffle = "S:a "; 1901 } 1898 1902 1899 1903 if (music_repeat == 1) 1900 1904 {