Remove playmuted audio configuration

This commit is contained in:
Tiago Koji Castro Shibata
2017-07-18 15:15:04 -03:00
parent 4e9212b152
commit 3dfe3808c6
7 changed files with 24 additions and 41 deletions
+1 -8
View File
@@ -95,14 +95,7 @@ int w_vibrate(lua_State *L)
int w_hasBackgroundMusic(lua_State *L)
{
try
{
lua_pushboolean(L, instance()->hasBackgroundMusic());
}
catch (love::Exception &)
{
lua_pushnil(L);
}
lua_pushboolean(L, instance()->hasBackgroundMusic());
return 1;
}