Page 1 of 1

Retroarch Sameboy Core Missing

Posted: Sun Apr 15, 2018 1:54 pm
by LateNightRetro
If you could please add the core to the options. Would be great.

Re: Retroarch Sameboy Core Missing

Posted: Mon Apr 16, 2018 4:14 pm
by mgalaxy
I've just added it! (available with next version)
In the meantime you can already add it to your systems by following those steps:

- Open "C:\Program Files (x86)\mGalaxy\Data\BaseSystems\BaseSystems.xml" file with a text editor.

- Do a search on "Nintendo GB"

- You'll see that bloc of code:

Code: Select all

<System type="Console">
	<Name ss="9" em="Nintendo_Game_Boy" tgdb="Nintendo Game Boy" gb="3|GB">Nintendo GB</Name>
	<Emu selected="Gambatte [Script]">
		<Cmd hidden="false" name="Gambatte [Script]" value="-f "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="false" name="VisualBoyAdvance" value=""%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [emux_gb_libretro.dll]" value="-f -L cores\emux_gb_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [gambatte_libretro.dll]" value="-f -L cores\gambatte_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [tgbdual_libretro.dll]" value="-f -L cores\tgbdual_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
	</Emu>
</System>
- Copy this line

Code: Select all

<Cmd hidden="true" name="RetroArch [sameboy_libretro.dll]" value="-f -L cores\sameboy_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
... and paste it just before the </Emu> tag.

You should end up with something like this:

Code: Select all

<System type="Console">
	<Name ss="9" em="Nintendo_Game_Boy" tgdb="Nintendo Game Boy" gb="3|GB">Nintendo GB</Name>
	<Emu selected="Gambatte [Script]">
		<Cmd hidden="false" name="Gambatte [Script]" value="-f "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="false" name="VisualBoyAdvance" value=""%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [emux_gb_libretro.dll]" value="-f -L cores\emux_gb_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [gambatte_libretro.dll]" value="-f -L cores\gambatte_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [tgbdual_libretro.dll]" value="-f -L cores\tgbdual_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
		<Cmd hidden="true" name="RetroArch [sameboy_libretro.dll]" value="-f -L cores\sameboy_libretro.dll "%path\%file%ext"" extensions=".gb,.gbc,.zip"/>
	</Emu>
</System>
- Do exactly the same (with the same line) for "Nintendo GBC"