Fixed some internal documentation (thanks to clang's -Wdocumentation)

This commit is contained in:
Alex Szpakowski
2013-09-23 21:52:28 -03:00
parent 06f2ec8e31
commit 8d5ddb9e34
18 changed files with 71 additions and 85 deletions
+3 -3
View File
@@ -274,10 +274,10 @@ int Physics::getDistance(lua_State *L)
return 5;
}
void Physics::setMeter(int meter)
void Physics::setMeter(int scale)
{
if (meter < 1) throw love::Exception("Physics error: invalid meter");
Physics::meter = meter;
if (scale < 1) throw love::Exception("Physics error: invalid meter");
Physics::meter = scale;
}
int Physics::getMeter()