From 891fb0f5c04a2a82bf50f1c470e62fa8d10d0b24 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 24 Dec 2008 22:40:10 +0000 Subject: Silenced signed/unsigned warning svn-id: r35531 --- graphics/dither.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/dither.cpp b/graphics/dither.cpp index 278cbb04f7..baeadb72cb 100644 --- a/graphics/dither.cpp +++ b/graphics/dither.cpp @@ -238,7 +238,7 @@ void SierraLight::nextLine() { byte SierraLight::dither(byte c1, byte c2, byte c3, uint32 x) { assert(_palLUT); - assert(x < _width); + assert(x < (uint32)_width); int32 eC1, eC2, eC3; -- cgit v1.2.3