We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c01949 commit 275f5aeCopy full SHA for 275f5ae
1 file changed
static/Emus/.emu_setup/launch_emu.sh
@@ -136,14 +136,19 @@ fi
136
137
case "$EMU" in
138
"EBOOKS") run_ebook ;;
139
- "MP3") run_mp3 ;;
+ "MEDIA"|"MP3") run_ffplay ;;
140
"OPENBOR") run_openbor ;;
141
- "PORTS") run_port ;;
142
"PICO8") run_pico8 ;;
143
- "MEDIA"|"MP3") run_ffplay ;;
+ "PORTS") run_port ;;
144
"PS")
145
case "$CORE" in
146
- "pcsx_rearmed-sa") run_pcsx ;;
+ "pcsx_rearmed-sa")
+ if [ "${ROM_FILE##*.}" = "m3u" ]; then
147
+ display -d 1500 -t "PCSX standalone does not support reading M3U files."
148
+ exit 1
149
+ fi
150
+ run_pcsx
151
+ ;;
152
"pcsx_rearmed") run_retroarch ;;
153
esac
154
;;
0 commit comments