File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/blitter/8bpp_optimized.cpp
Show inline comments
 
@@ -80,7 +80,7 @@ void Blitter_8bppOptimized::Draw(Blitter
 
			dst += trans;
 
			width -= trans;
 
			if (width <= 0 || pixels == 0) continue;
 
			pixels = min<uint>(pixels, (uint)width);
 
			pixels = std::min<uint>(pixels, width);
 
			width -= pixels;
 

	
 
			switch (mode) {