Removed more unnecessary tabs in blank lines

This commit is contained in:
Alexander Szpakowski
2013-01-07 07:11:40 -04:00
parent eb98e8cc48
commit e5388ff73b
7 changed files with 90 additions and 98 deletions
+5 -5
View File
@@ -93,19 +93,19 @@ int w_Font_getLineHeight(lua_State *L)
int w_Font_setFilter(lua_State *L)
{
Font *t = luax_checkfont(L, 1);
Image::Filter f;
const char *minstr = luaL_checkstring(L, 2);
const char *magstr = luaL_optstring(L, 3, minstr);
if (!Image::getConstant(minstr, f.min))
return luaL_error(L, "Invalid filter mode: %s", minstr);
if (!Image::getConstant(magstr, f.mag))
return luaL_error(L, "Invalid filter mode: %s", magstr);
t->setFilter(f);
return 0;
}