From 1a236f4a6723c9457a8824403b5ac875c1efd877 Mon Sep 17 00:00:00 2001 From: meancoot Date: Thu, 7 Feb 2013 19:07:50 -0500 Subject: [PATCH] ios: Fix a couple of warnings --- ios/RetroArch/dirlist.m | 2 +- ios/RetroArch/gameview.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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