-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
Sonic Mania/Roms/PORTS/Games/Sonic Mania/_required_files.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/mnt/SDCARD/Roms/PORTS/Games/Sonic Mania | ||
|-- Data.rsdk | ||
|-- Game.so | ||
|-- RSDKv5U | ||
|-- Settings.ini | ||
|-- cpuclock | ||
|-- launch.sh | ||
|-- lib | ||
| |-- libEGL.so | ||
| |-- libGLESv2.so | ||
| |-- libSDL2-2.0.so.0 | ||
| |-- libSDL2-2.0.so.02 | ||
| |-- libSDL2_image-2.0.so.0 | ||
| |-- libSDL2_ttf-2.0.so.0 | ||
| |-- libjson-c.so.5 | ||
| |-- libneon.so | ||
| |-- libogg.so.0 | ||
| |-- libpng16.so.16 | ||
| |-- libtheora.so.0 | ||
| |-- libtheoradec.so.1 | ||
| `-- libz.so.1 | ||
`-- log.txt |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/sh | ||
mydir=`pwd` | ||
miyoodir=/mnt/SDCARD/miyoo | ||
sysdir=/mnt/SDCARD/.tmp_update | ||
export SDL_VIDEODRIVER=mmiyoo | ||
export EGL_VIDEODRIVER=mmiyoo | ||
export SDL_AUDIODRIVER=dsp | ||
|
||
if [ -e "$sysdir/bin/infoPanel" ]; then | ||
if [ ! -e "$mydir/Data.rsdk" ]; then | ||
infoPanel -t "Missing data files" -m "File: Data.rsdk \n Does not exist in the root of this app \n\n Please acquire the file and try again" --auto 2> /dev/null | ||
touch /tmp/dismiss_info_panel | ||
sleep 4 | ||
rm -rf /tmp/dismiss_info_panel | ||
exit | ||
fi | ||
fi | ||
|
||
CUST_CPUCLOCK=1 | ||
if [ "$CUST_CPUCLOCK" = "1" ]; then | ||
echo "set customized cpuspeed" | ||
./cpuclock 1600 | ||
fi | ||
|
||
cd "$mydir" | ||
export LD_PRELOAD="$mydir/lib/libSDL2-2.0.so.0:$miyoodir/lib/libpadsp.so" | ||
./RSDKv5U | ||
unset LD_PRELOAD |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
Sonic Mania/Roms/PORTS/Shortcuts/Arcade/Sonic Mania.notfound
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
# Standalone Ports Script Template | ||
|
||
# main configuration : | ||
GameName="Sonic Mania" | ||
GameDir="Sonic Mania" | ||
GameExecutable="launch.sh" | ||
GameDataFile="Data.rsdk" | ||
|
||
# additional configuration | ||
KillAudioserver=0 | ||
PerformanceMode=1 | ||
|
||
# specific to this port : | ||
Arguments="" | ||
|
||
# running command line : | ||
/mnt/SDCARD/Emu/PORTS/launch_standalone.sh "$GameName" "$GameDir" "$GameExecutable" "$Arguments" "$GameDataFile" "$KillAudioserver" "$PerformanceMode" |