BAFelton
Well-Known Member
Here's a quote of http://www.gp32x.de/board/index.php?/topic/58658-ginge/page__st__90 , making it easier to find.
Tuto from Traylorpark :
First Step :
In the "GAME" folder
I have a folder called "cavestory_gp2x" that contains the Cave Story files.
And I have an .ini file called "cavestory_gp2x.ini"
My .ini file reads as follows:
Step two :
Now, inside the "cavestory_gp2x" folder, I have created a .gpe file using Notepad/Textedit called "startup.gpe".
Be careful that your editor of choice can encode the file properly, something Unix happy, as straight text as you can muster.
Use this tuto about .ini files.
Note the .ini file points to this .gpe file.
The .gpe file is as follows:
The /mnt/ file location points to where I put Ginge, in my app folder. Change this if Ginge is in a different location for you.
If you want to modify the icon or the title bar : Use this tuto.
You can probably use these files as a template to any other game you wish to Ginge-ify. Just change the addresses.
Be careful, the paths are case sensitive again
Tuto from Traylorpark :
Alright, so I've Ginge-ified CaveStory so that Ginge is totally invisible.
Here's how I did it on my Caanoo.
First Step :
In the "GAME" folder
I have a folder called "cavestory_gp2x" that contains the Cave Story files.
And I have an .ini file called "cavestory_gp2x.ini"
My .ini file reads as follows:
Code:
[info]
name="GINGE: CAVE STORY"
path="/cavestory_gp2x/startup.gpe"
icon="/cavestory_gp2x/doukutsu.png"
title="/cavestory_gp2x/title.png"
group="GAME"
Step two :
Now, inside the "cavestory_gp2x" folder, I have created a .gpe file using Notepad/Textedit called "startup.gpe".
Be careful that your editor of choice can encode the file properly, something Unix happy, as straight text as you can muster.
Use this tuto about .ini files.
Note the .ini file points to this .gpe file.
The .gpe file is as follows:
Code:
#!/bin/sh
/mnt/sd/apps/ginge/ginge_prep --nomenu ./doukutsu.gpe
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
The /mnt/ file location points to where I put Ginge, in my app folder. Change this if Ginge is in a different location for you.
If you want to modify the icon or the title bar : Use this tuto.
You can probably use these files as a template to any other game you wish to Ginge-ify. Just change the addresses.
Be careful, the paths are case sensitive again
Last edited by a moderator: