From b776fe9fb307c32128fadc528f5df51d89a7757b Mon Sep 17 00:00:00 2001 From: dajoho Date: Sat, 19 Aug 2023 19:55:13 +0200 Subject: [PATCH] Test moving to pandash --- libretro-teampandory-amiberry-whdload-vcore.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libretro-teampandory-amiberry-whdload-vcore.c b/libretro-teampandory-amiberry-whdload-vcore.c index ca7caf7..dbf716e 100644 --- a/libretro-teampandory-amiberry-whdload-vcore.c +++ b/libretro-teampandory-amiberry-whdload-vcore.c @@ -138,14 +138,13 @@ void retro_run(void) */ bool retro_load_game(const struct retro_game_info *info) { - char command[512] = "/tmp/pandorygrub amiberry53 whdload"; + char command[512] = "/mnt/Pandory/pandash amiberry5 whdload"; // Check if there is content to load. if (info != NULL && info->path != NULL && info->path[0] != '\0') { sprintf(command, "%s \"%s\"", command, info->path); } - // Run FFPlay. return system(command) != -1; }