All your work on Simple has gotten me motivated to take a stab at modifying Simple a little to tweak a few things that have bothered me forever one of which is that the gbc icon is NOT a gbc it's a dmg. I went to edit the gbc icon in the resource files you included and much to my surprise it's a gbc. Do you know why it doesn't use the correct icon when complied?Hope you all enjoy it![]()
EDIT: I figured it out. In ezkernelnew.c you have to edit the following:
Code:
}
else if(!strcasecmp(&(pfilename[strlen8-3]), "gbc"))
{
icon = (u16*)(gImage_icon_GBC);
}
else if(!strcasecmp(&(pfilename[strlen8-2]), "gb"))
{
icon = (u16*)(gImage_icon_GB);
Also, I found I had to edit the ngpc to ngc and string length to 3:
Code:
}
else if (!strcasecmp(&(pfilename[strlen8 - 3]), "ngc")) { //Neo Geo Pocket Color
icon = (u16*)(gImage_icon_NG);
}
Last edited by Merkin,









