The code you posted won't compile on my system. You need to have a loop in there. Also the order in which you display stuff is important. This code compiles and works fine on my system :-
#include "DarkGDK.h"
void DarkGDK(void)
{
dbSyncOn();
dbSyncRate(60);
dbLoadObject("Colonel-X.X",1);
while(LoopGDK()) {
dbText(0,0,"Test1");
dbText(0,15,"Test2");
dbSync();
}
return;
}
Make doubly sure you've spelt the name of the file correctly, no errors are reported if GDK can't find it.
There are only 10 types of people in the world.
Those who understand binary, and those who don't.