Cannt Get Gnuboy To Run


Lettuce Dude

Hogarth the hairy Hippo.
Joined
Nov 30, 2005
Messages
301
Age
31
Location
Cardiff, Wales
Website
Visit site
I have my file called rom.gb and am trying to run the gb.gpe but when I load it the screen just flashes pink and goes back to the menu. Anybody have any idea what I'm doing wrong?
Thanks for any help in advance.
 
the only way i have got the emu to work is to make a folder called rom.gbc then rename the one rom i want tp play rom.gbc as well.put both the rom and emu in the folder rom.gbc
 
I use a modified version of this script to generate launch files for all of my .gb and .gbc games. If you want to use this, rename your Gnuboy to 'gb'. Save this text into a file of any name with an extension of .gpu. Put it inside of your Gnuboy directory and then run it from the Utilities menu. My modified script will search for both .gb and .gbc games and create launch files for each one as well as syncing during exit.


#!/bin/bash

for i in *.gbc;
do
rm "${i/.gbc/.gpe}"
echo "./gb \"$i\"" > "${i/.gbc/.gpe}"
echo "cd /usr/gp2x" >> "${i/.gbc/.gpe}"
echo "./gp2xmenu" >> "${i/.gbc/.gpe}"
done
cd /usr/gp2x
./gp2xmenu
 
Last edited by a moderator:
Waste of time and effort. Use selector or unify instead. That way you neither have to use 1001 launch scripts nor have to rename the rom to rom.gbc all the time.
 
Back
Top