Hello. I am new to Dark GDK but not c++, this is my first post.
I have been playing around with the dbText, dbCenterText, and dbPrint functions, but I've ran into a little trouble.
They work as expected, but when I use a background image, the text gets covered by that image.
How can I bring the text to the foreground so that it can be seen?
My code looks something like this:
...
dbLoadImage ( "bg_800x600.bmp", 1 );
dbSprite ( 1, 0, 0, 1 );
while ( LoopGDK() ) {
dbText (5,5,"testing 123");
...
I appreciate any help I get.