void IncPixPnt (void)
{//Bumps the pixel on one place to the right, but not onto the next row
	if (cPixColMask==0x01)
	{
		cPixColByte--;
		cPixColMask=0x80;
	}
	else {
		cPixColMask=cPixColMask>>1;
	}
	if (cPixColByte>=5)
	{
		cPixColByte=0;
//Prevent overrun
	}
}