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:
Bill Meltsner
2010-02-26 03:55:21 -05:00
parent dbf8301f24
commit 7c33786100
13 changed files with 153 additions and 142 deletions
+2 -2
View File
@@ -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;
}