mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 12:40:03 +00:00
(Playbook) Hardcoded libretro path for now - can load the dynamic library -
now issue is with EGL context file
This commit is contained in:
parent
39c42b5975
commit
ef91a44652
@ -48,7 +48,16 @@ int rarch_main(int argc, char *argv[])
|
||||
bps_initialize(); //Initialize BPS library
|
||||
|
||||
int init_ret;
|
||||
if ((init_ret = rarch_main_init(argc, argv))) return init_ret;
|
||||
struct rarch_main_wrap args = {0};
|
||||
|
||||
args.verbose = true;
|
||||
args.sram_path = NULL;
|
||||
args.state_path = NULL;
|
||||
args.rom_path = "/sdcard/dkc.sfc";
|
||||
args.libretro_path = "/accounts/1000/appdata/com.RetroArch.testDev_m_RetroArch181dafc7/app/native/lib/libsnes9x-next.so";
|
||||
args.config_path = NULL;
|
||||
|
||||
if ((init_ret = rarch_main_init_wrap(&args))) return init_ret;
|
||||
rarch_init_msg_queue();
|
||||
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
|
||||
rarch_main_deinit();
|
||||
|
@ -48,6 +48,7 @@
|
||||
<!-- The category where the application appears. Either core.games or core.media. -->
|
||||
<category>core.games</category>
|
||||
<asset path="icon.png">icon.png</asset>
|
||||
<asset path="/home/twinaphex/local-repos/RetroArch/playbook/libsnes9x-next.so">lib/libsnes9x-next.so</asset>
|
||||
<!-- <asset path="LICENSE">LICENSE</asset> -->
|
||||
<!-- <asset path="NOTICE">NOTICE</asset> -->
|
||||
<configuration id="com.qnx.qcc.configuration.exe.debug.507133694" name="Device-Debug">
|
||||
|
Loading…
x
Reference in New Issue
Block a user