FA: Mirko
int GpRectFill16(GPDRAWTAG * gptag,GPDRAWSURFACE * ptgpds,int dx,int dy,int width,int height,int color)
{
unsigned short *ptr;
int x, y;
for (x = 0; x < width; x++)
{
ptr = (unsigned short *)ptgpds->ptbuffer + ((dx + x) * ptgpds->buf_h) + (ptgpds->buf_h - 1 - dy);
for (y =...