fixed a bug in ImageRasterizer's constructor where it wasn't using the ImageData passed to it

This commit is contained in:
Bill Meltsner
2010-02-09 13:20:40 -05:00
parent dd85250180
commit 3ebcee1e17
+1 -1
View File
@@ -28,7 +28,7 @@ namespace love
namespace font
{
ImageRasterizer::ImageRasterizer(love::image::ImageData * data, unsigned short * glyphs)
: imageData(imageData)
: imageData(data)
{
imageData->retain();
}