I dont mind running a test on the pandora if you have a binary ready.
Ive actually (after seeing your thread) took a minute to compile it myself. The pandora doesnt like 8 bit at the moment, so converting to 16 bit might be needed.
One strange thing Ive come across in my tests, I can get it to run on the pandora, but not on the gp2x/wiz. It looks like Im getting alignment problems, Ive looked at the gp2x specific source and I cant see any clear differences. I dont understand how it would on pandora and not the wiz/gp2x.
Rise of the Triad Startup Version 1.4
Shareware Version
Z_INIT: 8950000 bytes
IN_Startup: Mouse Present
Adding HUNTBGIN.WAD.
Adding REMOTE1.RTS.
W_Wad: Wad Manager Started NUMLUMPS=2103
W_GetNumForName: tables not found!
Update:
It was a bad pointer alignment:
Code:
int W_CheckNumForName (char *name)
{
char name8[8];
name8 was 9, things need to be in sizes of 4, so 8 did the tricks. I think the old gp2x source had 9, odd. Although the gfx are goofed on the wiz, i think thats a gph SDL problem. I may need to do a surface conversion to 16 bit.