ios: Fix a couple of warnings

This commit is contained in:
meancoot 2013-02-07 19:07:50 -05:00
parent 33d57ee3a0
commit 1a236f4a67
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@
strcat(path, "/");
strcat(path, item->d_name);
extern void ios_run_game(const char*);
extern void ios_load_game(const char*);
ios_load_game(path);
}
}

View File

@ -9,5 +9,5 @@
#import <GLKit/GLKit.h>
@interface game_view : UIViewController
- (void)load_game:(const char*)file_name;
@end