12 Nov 10, 07:47PM
I think that bug is caused by shadow rendering. Try switching "Dynamic Shadows" to "Blob" or "Off" in the menu (Settings->Video settings->Advanced video settings).
In order to find the cause of the bug, you should use a debugger (preferably GDB, i think that's available for Amiga?). You'll have to compile with the -g option. To do this, change the line
at the top of source/src/Makefile to
, then recompile and run it in GDB.
In order to find the cause of the bug, you should use a debugger (preferably GDB, i think that's available for Amiga?). You'll have to compile with the -g option. To do this, change the line
[SELECT ALL] Code:
CXXFLAGS= -O3 -fomit-frame-pointer
[SELECT ALL] Code:
CXXFLAGS= -O3 -fomit-frame-pointer -g