GP32 Trying To Get My Maps Working In Yeti3d


bmnb123

Still Fresh
Joined
Mar 23, 2005
Messages
10
Hi I am trying to get my maps working in yeti3d I created a map e1m1.c using Yeti3D Editor and replaced it with the exact same name the original e1m1.c but when I still got this error


: undefined reference to `e1m1'
make: *** [yeti.elf] Error 1

but when I compile it with original I get no errors.

/gcc-arm/bin/arm-thumb-elf-objcopy.exe -v -O binary yeti.elf yeti.gba
copy from yeti.elf(elf32-littlearm) to yeti.gba(binary)
/tools/win32/gbafix.exe yeti.gba -tyeti
ROM fixed!
/tools/win32/vba.exe yeti.gba

Any ideas how to fix it would be thankful!
Jason
:(
 
look in e1m1.c, change

Code:
some data type Something[]="a bunch of meaningless data";

to

Code:
some data type e1m1[]="a bunch of meaningless data";

Of course its not exactly like that but you get the gist of it, right?
 
Back
Top