0 Members and 1 Guest are viewing this topic.
Well, first render the background, then the font, and flip the stuff to screen.
// Blit the sprite/tile what ever you want to be behind on the bufferSDL_BlitSurface(surface, NULL, screen, &rect);// Blit the text surfaceSDL_BlitSurface(text_surface, NULL , screen, &rect);// Flip buffersSDL_Flip(screen);