libretro / tgbdual-libretro

libretro port of TGB Dual
28 stars 37 forks source link

Won't emulate two units with RetroArch #1

Closed nwx closed 10 years ago

nwx commented 10 years ago

my system: archlinux x64 retroarch and libretro-tgbdual built from git via the AUR.

my retroarch config: http://pastebin.com/LmwL00vm

I executed this command: retroarch --sufamiA /path/to/rom/A.gbc --sufamiB /path/to/rom/B.gbc

and this is what i get: RetroArch [ERROR] :: Could not read ROM file.

any tips?

lifning commented 10 years ago

Try specifying a third ROM immediately after B.gbc. I believe the problem you may be having is that RetroArch expects the ROMs for slot A and slot B of the "Sufami Turbo", as well as the ROM for the ST itself (which you provide the same way you would a single normal ROM for other cores)

Cheers

nwx notifications@github.com wrote:

my system: archlinux x64 retroarch and libretro-tgbdual built from git via the AUR.

my retroarch config: http://pastebin.com/LmwL00vm

I executed this command: retroarch --sufamiA /path/to/rom/A.gbc --sufamiB /path/to/rom/B.gbc

and this is what i get: RetroArch [ERROR] :: Could not read ROM file.

any tips?


Reply to this email directly or view it on GitHub: https://github.com/libretro/tgbdual-libretro/issues/1

nwx commented 10 years ago

thanks.

i remember trying 'retroarch /path/to/rom/A.gbc --sufamiA /path/to/rom/A.gbc --sufamiB /path/to/rom/B.gbc'

with this command only the rom which was defined before the 'sufami'-arguments was started by retroarch. moving it behind them like

'retroarch --sufamiA /path/to/rom/A.gbc --sufamiB /path/to/rom/B.gbc /path/to/rom/A.gbc'

fixed it.

thanks again.

lifning commented 10 years ago

Quite welcome :)