mirror of
https://github.com/love2d/love.git
synced 2026-08-17 19:23:38 +02:00
Removed names of unused parameters to quiet noisy compilers
This commit is contained in:
@@ -317,7 +317,7 @@ void Font::print(const std::string &text, float x, float y, float letter_spacing
|
|||||||
dx += glyph->spacing + letter_spacing;
|
dx += glyph->spacing + letter_spacing;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (love::Exception &e)
|
catch (love::Exception &)
|
||||||
{
|
{
|
||||||
glPopMatrix();
|
glPopMatrix();
|
||||||
throw;
|
throw;
|
||||||
|
|||||||
@@ -339,7 +339,7 @@ Image *Graphics::newImage(love::image::ImageData *data)
|
|||||||
{
|
{
|
||||||
success = image->load();
|
success = image->load();
|
||||||
}
|
}
|
||||||
catch(love::Exception &e)
|
catch(love::Exception &)
|
||||||
{
|
{
|
||||||
image->release();
|
image->release();
|
||||||
throw;
|
throw;
|
||||||
|
|||||||
Reference in New Issue
Block a user