mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
work around compiler bug in GCC 2.95.x
svn-id: r9836
This commit is contained in:
parent
ac3ee2684e
commit
e8cd460441
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user