mirror of
https://github.com/love2d/love.git
synced 2026-08-19 04:06:17 +02:00
fixed a bug in ImageRasterizer's constructor where it wasn't using the ImageData passed to it
This commit is contained in:
@@ -28,7 +28,7 @@ namespace love
|
|||||||
namespace font
|
namespace font
|
||||||
{
|
{
|
||||||
ImageRasterizer::ImageRasterizer(love::image::ImageData * data, unsigned short * glyphs)
|
ImageRasterizer::ImageRasterizer(love::image::ImageData * data, unsigned short * glyphs)
|
||||||
: imageData(imageData)
|
: imageData(data)
|
||||||
{
|
{
|
||||||
imageData->retain();
|
imageData->retain();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user