aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/bitmap.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2011-07-03 12:30:27 +1000
committerPaul Gilbert2011-07-03 12:30:27 +1000
commit334de9626ae6e6e5cd66582993fe799b329a0a50 (patch)
treee15b25c72ee51e9103257122f3b4dc08ce457319 /engines/cge/bitmap.cpp
parentbf6a5256fe325816626156703b389273e10f1ae5 (diff)
downloadscummvm-rg350-334de9626ae6e6e5cd66582993fe799b329a0a50.tar.gz
scummvm-rg350-334de9626ae6e6e5cd66582993fe799b329a0a50.tar.bz2
scummvm-rg350-334de9626ae6e6e5cd66582993fe799b329a0a50.zip
CGE: Removed C standard library includes
Diffstat (limited to 'engines/cge/bitmap.cpp')
-rw-r--r--engines/cge/bitmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/bitmap.cpp b/engines/cge/bitmap.cpp
index 3bcf751b40..e4e0a37eb3 100644
--- a/engines/cge/bitmap.cpp
+++ b/engines/cge/bitmap.cpp
@@ -471,7 +471,7 @@ bool Bitmap::loadBMP(XFile *f) {
_w = hea.wid;
if ((_m = farnew(byte, _h * _w)) != NULL) {
int16 r = (4 - (hea.wid & 3)) % 4;
- byte buf[3]; int i;
+ byte buf[3];
for (i = _h - 1; i >= 0; i--) {
f->read(_m + (_w * i), _w);
if (r && f->_error == 0)