aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2008-12-24 22:40:10 +0000
committerFilippos Karapetis2008-12-24 22:40:10 +0000
commit891fb0f5c04a2a82bf50f1c470e62fa8d10d0b24 (patch)
treee6bb5b55320032ff9fae82ce398a8e315e81c6fa
parent00baeacf609e013bf671840aeea3cdf7741733b6 (diff)
downloadscummvm-rg350-891fb0f5c04a2a82bf50f1c470e62fa8d10d0b24.tar.gz
scummvm-rg350-891fb0f5c04a2a82bf50f1c470e62fa8d10d0b24.tar.bz2
scummvm-rg350-891fb0f5c04a2a82bf50f1c470e62fa8d10d0b24.zip
Silenced signed/unsigned warning
svn-id: r35531
-rw-r--r--graphics/dither.cpp2
1 files changed, 1 insertions, 1 deletions
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;