Basically, I want to make a speech portrait drawing function. Each portrait is 32x32 (for now).
In V2, I would have done this:
Code:
void Place.Portrait(int x, int y, int who)
{
TCopySprite(x,y,32,32,speechpic+(1024*who) );
}
However, now it uses TBlit(), and I have no idea how I would do this.