This repository was archived by the owner on May 4, 2021. It is now read-only.
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -196,14 +196,14 @@ - (id) initWithWindow:(UIWindow*)window {
196
196
if ((self = [super init ])) {
197
197
_window = window;
198
198
199
- _collectionImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" Collection" ofType: @" png" ]];
199
+ _comicImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" Comic-Background" ofType: @" png" ]];
200
+ CHECK (_comicImage);
201
+ _collectionImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" Collection-Background" ofType: @" png" ]];
200
202
CHECK (_collectionImage);
201
203
_newImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" New" ofType: @" png" ]];
202
204
CHECK (_newImage);
203
205
_ribbonImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" Ribbon" ofType: @" png" ]];
204
206
CHECK (_ribbonImage);
205
- _comicImage = [[UIImage alloc ] initWithContentsOfFile: [[NSBundle mainBundle ] pathForResource: @" Comic" ofType: @" png" ]];
206
- CHECK (_comicImage);
207
207
208
208
DatabaseSQLRowID collectionID = [[NSUserDefaults standardUserDefaults ] integerForKey: kDefaultKey_CurrentCollection ];
209
209
if (collectionID) {
You can’t perform that action at this time.
0 commit comments