Log 'notify list pushed'

This commit is contained in:
twinaphex 2015-05-15 13:43:38 +02:00
parent 679f1345fd
commit ffaca6b377
2 changed files with 4 additions and 3 deletions

View File

@ -248,8 +248,8 @@ static int menu_displaylist_parse(menu_displaylist_info_t *info, bool *need_sort
if (!str_list)
{
const char *str = path_is_compressed
? "Unable to read compressed file"
: "Directory not found";
? "Unable to read compressed file."
: "Directory not found.";
menu_list_push(info->list, str, "", 0, 0);
return 0;

View File

@ -464,7 +464,6 @@ static void ui_companion_cocoatouch_notify_content_loaded(void *data)
RetroArch_iOS *ap = (RetroArch_iOS *)apple_platform;
(void)data;
RARCH_LOG("Gets here.\n");
if (ap)
[ap showGameView];
@ -526,6 +525,8 @@ static void ui_companion_cocoatouch_notify_list_pushed(void *data,
RetroArch_iOS *ap = (RetroArch_iOS *)apple_platform;
RARCH_LOG("Gets here.\n");
if (ap)
[ap mainMenuRefresh];
}