From 2299a4fb3fedcc2e27de81617901f1988990c677 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 5 Nov 2013 00:46:07 +0100 Subject: [PATCH] (RGUI) Fix PS3 directory paths --- frontend/menu/menu_common.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index d108475d1e..f9274132c4 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -2073,10 +2073,10 @@ void menu_parse_and_resolve(void *data, unsigned menu_type) rgui_list_push(rgui->selection_buf, drive, menu_type, 0); } #elif defined(__CELLOS_LV2__) - rgui_list_push(rgui->selection_buf, "app_home:/", menu_type, 0); - rgui_list_push(rgui->selection_buf, "dev_hdd0:/", menu_type, 0); - rgui_list_push(rgui->selection_buf, "dev_hdd1:/", menu_type, 0); - rgui_list_push(rgui->selection_buf, "host_root:/", menu_type, 0); + rgui_list_push(rgui->selection_buf, "/app_home/", menu_type, 0); + rgui_list_push(rgui->selection_buf, "/dev_hdd0/", menu_type, 0); + rgui_list_push(rgui->selection_buf, "/dev_hdd1/", menu_type, 0); + rgui_list_push(rgui->selection_buf, "/host_root/", menu_type, 0); #else rgui_list_push(rgui->selection_buf, "/", menu_type, 0); #endif