See this picture? Well if I blt these 3 different tiles on top of each other using transparency as shown below what do you think it would be? A , B, or C?

Please tell me what you think in the poll.

VB Code:
  1. ' blt the background to the buffer
  2.             rScrlSrc.Left = Level.Bground(XCounter, YCounter).SrcX
  3.             rScrlSrc.Top = Level.Bground(XCounter, YCounter).SrcY
  4.             Call DoScrlRects
  5.             srfBBuffer.BltFast (XCounter - ViewX) * TILEWIDTH, (YCounter - ViewY) * TILEHEIGHT, srfTileSets(Level.Bground(XCounter, YCounter).TileSet), rScrlSrc, DDBLTFAST_WAIT
  6.            
  7.             ' blt the char to the bbuffer
  8.             srfBBuffer.BltFast ScrlCharX, ScrlCharY, srfCharacter, rSrc, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY
  9.            
  10.             ' blt the foreground to the bbuffer
  11.             rScrlSrc.Left = Level.Fground(XCounter, YCounter).SrcX
  12.             rScrlSrc.Top = Level.Fground(XCounter, YCounter).SrcY
  13.             Call DoScrlRects
  14.             srfBBuffer.BltFast (XCounter - ViewX) * TILEWIDTH, (YCounter - ViewY) * TILEHEIGHT, srfTileSets(Level.Fground(XCounter, YCounter).TileSet), rScrlSrc, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY


I'm very agrivated with this.


Drewski