From 6bf74b1bd2f3ec054bcc3df678bf658b3dfd3a90 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 12 Oct 2014 02:31:25 +0200 Subject: [PATCH] (Menu) Fix playlist pushing issue --- frontend/menu/menu_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index c30da0d56e..34c285ee6b 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -89,10 +89,10 @@ static void push_to_history_playlist(void) msg_queue_push(g_extern.msg_queue, str, 1, 1); } - rarch_playlist_push(g_defaults.history, + content_playlist_push(g_defaults.history, g_extern.fullpath, g_settings.libretro, - &g_extern.menu.info); + g_extern.menu.info.library_name); } bool load_menu_content(void)