Fixing mismatched delete

svn-id: r42354
This commit is contained in:
Sven Hesse 2009-07-10 21:49:47 +00:00
parent 4b37e6ad8c
commit ad7c50e70d

View File

@ -62,7 +62,7 @@ Font::Font(const byte *data) : _dataPtr(data) {
}
Font::~Font() {
delete _dataPtr;
delete[] _dataPtr;
}
uint8 Font::getCharWidth(uint8 c) const {