diff options
-rw-r--r-- | graphics/dither.cpp | 2 |
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; |