File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ hacked `lang_array.ini` for a system that you know was working fine.
18
18
19
19
# How to install
20
20
21
+ If you don't already have a script to launch NeoGeo Pocket games through RetroArch, copy
22
+ the file ` retroarch\bin\ngp ` to your existing ` retroarch\bin ` directory. If you do already
23
+ have a script, the ` emuinfo.txt ` stuff included here and explained further down expects
24
+ your script to launch NeoGeo Pocket games to be called ` ngp ` - if it's not, you'll need
25
+ to make adjustments to the ` emuinfo.txt ` and ` rominfo.txt ` files to reflect this
26
+ difference...
27
+
21
28
From your existing ` ASPh\local ` directory, go into one of the existing system directories
22
29
(e.g. ` English ` ) and copy the ` help ` directory to the ` ASPh\local\French ` directory
23
30
included here.
Original file line number Diff line number Diff line change
1
+ #! /system/bin/sh
2
+
3
+ LD_LIBRARY_PATH=/mnt/hdisk/retroarch/lib:$LD_LIBRARY_PATH
4
+ RAPATH=/mnt/hdisk/retroarch
5
+ RABIN=${RAPATH} /bin/retroarch
6
+ CORESPATH=${RAPATH} /cores
7
+ RACFG=${RAPATH} /retroarch.cfg
8
+
9
+ export HOME=/mnt/hdisk/
10
+
11
+ busybox fbset -fb /dev/fb0 -g 1280 720 1280 720 32
12
+
13
+ retroarch_launch () {
14
+ $RABIN --verbose --log-file /mnt/hdisk/ra_${1} .log -c $RACFG -L $CORESPATH /${1} _libretro.so ${2} & > /mnt/hdisk/error_ra_${1} .log
15
+ }
16
+
17
+ retroarch_launch mednafen_ngp $1
18
+
You can’t perform that action at this time.
0 commit comments