Explorar el Código

fixed scalar vs. vector delete issue in GlyphData::pad

Bill Meltsner hace 15 años
padre
commit
6c456ea93b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/modules/font/GlyphData.cpp

+ 1 - 1
src/modules/font/GlyphData.cpp

@@ -43,7 +43,7 @@ namespace font
 
 
 	GlyphData::~GlyphData()
 	GlyphData::~GlyphData()
 	{
 	{
-		delete[] data;
+		delete data;
 	}
 	}
 
 
 	void * GlyphData::getData() const
 	void * GlyphData::getData() const