diff --git a/ios/RetroArch/dirlist.m b/ios/RetroArch/dirlist.m index 8bbc489c48..2088d55446 100644 --- a/ios/RetroArch/dirlist.m +++ b/ios/RetroArch/dirlist.m @@ -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); } } diff --git a/ios/RetroArch/gameview.h b/ios/RetroArch/gameview.h index f5a7ed868b..5b82589110 100644 --- a/ios/RetroArch/gameview.h +++ b/ios/RetroArch/gameview.h @@ -9,5 +9,5 @@ #import @interface game_view : UIViewController -- (void)load_game:(const char*)file_name; + @end