Ok,
User error number one:
----------------------
backbuffer.DrawText(35,70,_T("Misaligned"),&m_fontComicSans,GDBLTFAST_KEYSRC|GDBLTFAST_COLORFILL,GDDRAWTEXT_LEFT,&GDBltFastFx,0);
Should actually be:
backbuffer.DrawText(35,70,_T("Misaligned"),&m_fontComicSans,GDDRAWTEXT_LEFT,GDBLTFAST_KEYSRC|GDBLTFAST_COLORFILL,&GDBltFastFx,0);
User error number two:
----------------------
backbuffer.DrawText(120,100,_T("This text doesn't show"),&m_fontComicSans,0,GDDRAWTEXT_CENTER,0,0);
should be
backbuffer.DrawText(120,100,_T("This text doesn't show"),&m_fontComicSans,GDDRAWTEXT_CENTER,0,0,0);
Check the docs.. Text flags first, then bltfastflags.. Then you'll get the color fill to work... No bugs here..
