From: Jay Freeman (saurik) Date: Fri, 21 Oct 2011 04:27:38 +0000 (+0000) Subject: Add a != nil that was forgotten. X-Git-Tag: v0.9.3902^0 X-Git-Url: https://git.saurik.com/winterboard.git/commitdiff_plain/5d46b7b02db599f887fa5b28db3100aa218f2939?ds=inline Add a != nil that was forgotten. --- diff --git a/Library.mm b/Library.mm index 400284a..6d189f5 100644 --- a/Library.mm +++ b/Library.mm @@ -1942,7 +1942,7 @@ MSInitialize { if (SpringBoard_) { Wallpapers_ = [[NSArray arrayWithObjects:@"Wallpaper.mp4", @"Wallpaper@2x.png", @"Wallpaper@2x.jpg", @"Wallpaper.png", @"Wallpaper.jpg", @"Wallpaper.html", nil] retain]; Papered_ = $getTheme$(Wallpapers_) != nil; - Docked_ = $getTheme$([NSArray arrayWithObjects:@"Dock.png", nil]); + Docked_ = $getTheme$([NSArray arrayWithObjects:@"Dock.png", nil]) != nil; CFNotificationCenterAddObserver( CFNotificationCenterGetDarwinNotifyCenter(),