diff options
author | Sven Hesse | 2008-05-28 22:42:15 +0000 |
---|---|---|
committer | Sven Hesse | 2008-05-28 22:42:15 +0000 |
commit | ab6c82a8502ede6172f102bd5da8f3817b29a69f (patch) | |
tree | 36f27e8d2326992c2948c83547b9449a1de72859 | |
parent | 4afd19ad0fc61063c4ff4fa715a500b792031184 (diff) | |
download | scummvm-rg350-ab6c82a8502ede6172f102bd5da8f3817b29a69f.tar.gz scummvm-rg350-ab6c82a8502ede6172f102bd5da8f3817b29a69f.tar.bz2 scummvm-rg350-ab6c82a8502ede6172f102bd5da8f3817b29a69f.zip |
Silenced a signed/unsigned comparison warning
svn-id: r32355
-rw-r--r-- | engines/made/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp index a480a3bc0c..4774103d6a 100644 --- a/engines/made/screen.cpp +++ b/engines/made/screen.cpp @@ -819,7 +819,7 @@ int16 Screen::addToSpriteList(int16 index, int16 xofs, int16 yofs) { } SpriteListItem Screen::getFromSpriteList(int16 index) { - if (index > _spriteList.size()) { + if (((uint) index) > _spriteList.size()) { SpriteListItem emptyItem; emptyItem.index = 0; return emptyItem; |