mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 03:40:03 +00:00
(Playbook) Fixes Playbook build - starts up with RGUI now
This commit is contained in:
parent
1bfb203d0b
commit
e0cca6e7a8
@ -28,13 +28,8 @@ int rarch_main(int argc, char *argv[])
|
|||||||
//Initialize bps
|
//Initialize bps
|
||||||
#ifndef HAVE_BB10
|
#ifndef HAVE_BB10
|
||||||
bps_initialize();
|
bps_initialize();
|
||||||
|
|
||||||
rarch_main_clear_state();
|
rarch_main_clear_state();
|
||||||
|
|
||||||
strlcpy(g_settings.libretro, "app/native/lib", sizeof(g_settings.libretro));
|
|
||||||
strlcpy(g_extern.fullpath, "--menu", sizeof(g_extern.fullpath));
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
strlcpy(g_extern.config_path, "app/native/retroarch.cfg", sizeof(g_extern.config_path));
|
strlcpy(g_extern.config_path, "app/native/retroarch.cfg", sizeof(g_extern.config_path));
|
||||||
|
|
||||||
config_load();
|
config_load();
|
||||||
@ -42,6 +37,7 @@ int rarch_main(int argc, char *argv[])
|
|||||||
g_extern.verbose = true;
|
g_extern.verbose = true;
|
||||||
|
|
||||||
menu_init();
|
menu_init();
|
||||||
|
|
||||||
g_extern.lifecycle_mode_state |= (1ULL << MODE_LOAD_GAME);
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_LOAD_GAME);
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
@ -57,7 +53,7 @@ int rarch_main(int argc, char *argv[])
|
|||||||
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef RARCH_CONSOLE
|
#if defined(RARCH_CONSOLE) || defined(__BLACKBERRY_QNX__)
|
||||||
g_extern.lifecycle_mode_state |= (1ULL << MODE_MENU);
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_MENU);
|
||||||
#else
|
#else
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user