Changeset - r6958:208df4086968
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-06-19 12:18:24
truelight@openttd.org
(svn r10214) -Fix: off-by-one in draw-rect-color-remapping (peter1138)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/blitter/8bpp_base.cpp
Show inline comments
 
@@ -9,7 +9,7 @@ void Blitter_8bppBase::DrawColorMappingR
 
	do {
 
		for (int i = 0; i != width; i++) *((uint8 *)dst + i) = ctab[((uint8 *)dst)[i]];
 
		dst = (uint8 *)dst + _screen.pitch;
 
	} while (height--);
 
	} while (--height);
 
}
 

	
 
void *Blitter_8bppBase::MoveTo(const void *video, int x, int y)
0 comments (0 inline, 0 general)