Fixed some minor compiler warnings

This commit is contained in:
Alex Szpakowski
2014-03-01 21:16:01 -04:00
parent ec0f428c4f
commit 55514720a6
21 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ public:
BUTTON_MAX_ENUM
};
virtual ~Mouse() {};
virtual ~Mouse() {}
virtual Cursor *newCursor(love::image::ImageData *data, int hotx, int hoty) = 0;
virtual Cursor *getSystemCursor(Cursor::SystemCursor cursortype) = 0;
+2 -2
View File
@@ -51,7 +51,7 @@ int w_Cursor_getType(lua_State *L)
lua_pushstring(L, typestr);
return 1;
};
}
static const luaL_Reg functions[] =
{
@@ -65,4 +65,4 @@ extern "C" int luaopen_cursor(lua_State *L)
}
} // mouse
} // love
} // love