Remove functions that were deprecated in LÖVE 11.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2019-12-20 00:45:20 -04:00
parent 2a7e39d58b
commit 23db4f4a59
11 changed files with 0 additions and 322 deletions
-9
View File
@@ -121,12 +121,6 @@ int w_SoundData_getSample(lua_State *L)
return 1;
}
int w_SoundData_getChannels(lua_State *L)
{
luax_markdeprecated(L, "SoundData:getChannels", API_METHOD, DEPRECATED_RENAMED, "SoundData:getChannelCount");
return w_SoundData_getChannelCount(L);
}
static const luaL_Reg w_SoundData_functions[] =
{
{ "clone", w_SoundData_clone },
@@ -138,9 +132,6 @@ static const luaL_Reg w_SoundData_functions[] =
{ "setSample", w_SoundData_setSample },
{ "getSample", w_SoundData_getSample },
// Deprecated
{ "getChannels", w_SoundData_getChannels },
{ 0, 0 }
};