diff options
author | Kamil Zbróg | 2013-10-19 12:40:55 +0100 |
---|---|---|
committer | Kamil Zbróg | 2013-10-19 12:40:55 +0100 |
commit | 852a9637119b544400984508ca20ccf47ed66a81 (patch) | |
tree | 34f4091af3ee3f08b6ee32092eaf28d7b8a62f83 /engines/draci/surface.cpp | |
parent | 3a4068f87be678bd7446c32a1baa8869522ebd71 (diff) | |
parent | a9aaca460875c6d7a244e3f36a1cad62ec09411d (diff) | |
download | scummvm-rg350-852a9637119b544400984508ca20ccf47ed66a81.tar.gz scummvm-rg350-852a9637119b544400984508ca20ccf47ed66a81.tar.bz2 scummvm-rg350-852a9637119b544400984508ca20ccf47ed66a81.zip |
Merge branch 'master' into prince
Conflicts:
engines/plugins_table.h
Diffstat (limited to 'engines/draci/surface.cpp')
-rw-r--r-- | engines/draci/surface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/surface.cpp b/engines/draci/surface.cpp index 3676c6edac..4156398070 100644 --- a/engines/draci/surface.cpp +++ b/engines/draci/surface.cpp @@ -82,7 +82,7 @@ void Surface::markClean() { void Surface::fill(uint color) { byte *ptr = (byte *)getPixels(); - memset(ptr, color, w * h); + memset(ptr, color, (uint)(w * h)); } /** |