mirror of
https://github.com/love2d/love.git
synced 2026-08-17 02:58:31 +02:00
fixed a ridiculous number of gcc warnings, nearly all of which were complaints about unused parameters - the remaining 199 warnings I get are from code that isn't ours (box2d is responsible for all but 8 of them)
This commit is contained in:
@@ -27,7 +27,7 @@ namespace love
|
||||
{
|
||||
namespace font
|
||||
{
|
||||
ImageRasterizer::ImageRasterizer(love::image::ImageData * data, unsigned short * glyphs)
|
||||
ImageRasterizer::ImageRasterizer(love::image::ImageData * data, unsigned short *)
|
||||
: imageData(data)
|
||||
{
|
||||
imageData->retain();
|
||||
@@ -43,7 +43,7 @@ namespace font
|
||||
return getHeight();
|
||||
}
|
||||
|
||||
GlyphData * ImageRasterizer::getGlyphData(unsigned short glyph) const
|
||||
GlyphData * ImageRasterizer::getGlyphData(unsigned short) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user