(Playbook) Hardcoded libretro path for now - can load the dynamic library -

now issue is with EGL context file
This commit is contained in:
twinaphex 2013-02-25 08:55:47 +01:00
parent 39c42b5975
commit ef91a44652
2 changed files with 11 additions and 1 deletions

View File

@ -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();

View File

@ -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">