# HG changeset patch # User ib # Date 1317392306 0 # Node ID ac52c68c17f50427eee65df2b82cc51e7bdd883a # Parent 0527645edf135a563bb495afe652d9d07b974357 Remove check for STREAMTYPE_PLAYLIST. STREAMTYPE_PLAYLIST can't be handled by the GUI. Replace that by the stream types that can be handled. diff -r 0527645edf13 -r ac52c68c17f5 gui/interface.c --- a/gui/interface.c Thu Sep 29 22:39:08 2011 +0000 +++ b/gui/interface.c Fri Sep 30 14:18:26 2011 +0000 @@ -397,7 +397,8 @@ } switch (guiInfo.StreamType) { - case STREAMTYPE_PLAYLIST: + case STREAMTYPE_FILE: + case STREAMTYPE_STREAM: break; #ifdef CONFIG_VCD diff -r 0527645edf13 -r ac52c68c17f5 gui/win32/interface.c --- a/gui/win32/interface.c Thu Sep 29 22:39:08 2011 +0000 +++ b/gui/win32/interface.c Fri Sep 30 14:18:26 2011 +0000 @@ -473,7 +473,8 @@ guiInfo.NewPlay = 0; switch(guiInfo.StreamType) { - case STREAMTYPE_PLAYLIST: + case STREAMTYPE_FILE: + case STREAMTYPE_STREAM: break; #ifdef CONFIG_DVDREAD case STREAMTYPE_DVD: