Removed: wav, source, mixer, love.sound, love.source

This commit is contained in:
rxi
2017-04-18 19:12:07 +01:00
parent d2f27f553b
commit 834f78a0e0
12 changed files with 3 additions and 409 deletions

View File

@@ -26,8 +26,6 @@ int luaopen_graphics(lua_State *L);
int luaopen_timer(lua_State *L);
int luaopen_keyboard(lua_State *L);
int luaopen_mouse(lua_State *L);
int luaopen_sound(lua_State *L);
int luaopen_source(lua_State *L);
int luaopen_love(lua_State *L) {
int i;
@@ -38,7 +36,6 @@ int luaopen_love(lua_State *L) {
luaopen_image,
luaopen_quad,
luaopen_font,
luaopen_source,
NULL,
};
for (i = 0; classes[i]; i++) {
@@ -62,7 +59,6 @@ int luaopen_love(lua_State *L) {
{ "timer", luaopen_timer },
{ "keyboard", luaopen_keyboard },
{ "mouse", luaopen_mouse },
{ "sound", luaopen_sound },
{ 0 },
};
for (i = 0; mods[i].name; i++) {