mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
Hardcode path for now as a test
This commit is contained in:
parent
84c3b5a546
commit
332f48f2df
@ -2135,10 +2135,10 @@ static bool frontend_linux_set_fork(bool exitspawn,
|
|||||||
|
|
||||||
static void frontend_linux_exec(const char *path, bool should_load_game)
|
static void frontend_linux_exec(const char *path, bool should_load_game)
|
||||||
{
|
{
|
||||||
char *newargv[] = { NULL };
|
char *newargv[] = { "/home/squarepusher/libretro-super/dist/unix-static/snes9x_next_libretro.elf", NULL };
|
||||||
char *newenviron[] = { NULL };
|
char *newenviron[] = { NULL };
|
||||||
|
|
||||||
execve(path, newargv, newenviron);
|
execve("/home/squarepusher/libretro-super/dist/unix-static/snes9x_next_libretro.elf", newargv, newenviron);
|
||||||
perror("execve");
|
perror("execve");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user