Removed names of unused parameters to quiet noisy compilers

This commit is contained in:
Alexander Szpakowski
2013-01-07 07:29:04 -04:00
parent e5388ff73b
commit a6f4a3ab0f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -317,7 +317,7 @@ void Font::print(const std::string &text, float x, float y, float letter_spacing
dx += glyph->spacing + letter_spacing;
}
}
catch (love::Exception &e)
catch (love::Exception &)
{
glPopMatrix();
throw;
+1 -1
View File
@@ -339,7 +339,7 @@ Image *Graphics::newImage(love::image::ImageData *data)
{
success = image->load();
}
catch(love::Exception &e)
catch(love::Exception &)
{
image->release();
throw;