Test moving to pandash

This commit is contained in:
dajoho 2023-08-19 19:55:13 +02:00
parent e0e7952ada
commit b776fe9fb3

View file

@ -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;
}