work around compiler bug in GCC 2.95.x

svn-id: r9836
This commit is contained in:
Max Horn 2003-08-24 00:40:55 +00:00
parent ac3ee2684e
commit e8cd460441

View File

@ -1265,15 +1265,15 @@ public:
_width = width;
_height = height;
_pixels = (byte *) calloc(_width, _height);
};
~Surface() {
free(_pixels);
};
}
void clear();
void blit(Surface *s, ScummVM::Rect *r);
void blit(Surface *s, ScummVM::Rect *r, ScummVM::Rect *clip_rect);
~Surface() {
free(_pixels);
}
};
//