File diff r25654:e264fd698eb2 → r25655:1030dcb7eb52
src/blitter/32bpp_anim.cpp
Show inline comments
 
@@ -304,13 +304,13 @@ void Blitter_32bppAnim::DrawColourMappin
 
			udst = udst - width + _screen.pitch;
 
			anim = anim - width + this->anim_buf_pitch;
 
		} while (--height);
 
		return;
 
	}
 

	
 
	DEBUG(misc, 0, "32bpp blitter doesn't know how to draw this colour table ('%d')", pal);
 
	Debug(misc, 0, "32bpp blitter doesn't know how to draw this colour table ('{}')", pal);
 
}
 

	
 
void Blitter_32bppAnim::SetPixel(void *video, int x, int y, uint8 colour)
 
{
 
	*((Colour *)video + x + y * _screen.pitch) = LookupColourInPalette(colour);