Browse Source

macosx: Fix trying to load playlist as an SD

The sdtype of VLCSourceListItem was not correctly initialized to -1,
which caused the macosx interface trying to load the playlist like am
SD module, which does not work.

(cherry picked from commit 55acd54c9d)
Signed-off-by: Marvin Scholz <epirat07@gmail.com>
pull/135/head
Marvin Scholz 8 years ago
parent
commit
208f5a8c6c
  1. 10
      modules/gui/macosx/VLCSourceListItem.m

10
modules/gui/macosx/VLCSourceListItem.m

@ -25,4 +25,14 @@
@implementation VLCSourceListItem
- (id)init
{
self = [super init];
if (self) {
_sdtype = -1; // No SD type set
}
return self;
}
@end

Loading…
Cancel
Save