- Implementada polifonia en Chirping

- Arreglats un montó de warnings per lo mon
This commit is contained in:
2023-01-09 17:02:04 +01:00
parent bfcd7e62cf
commit c7dcf8bb8e
8 changed files with 106 additions and 150 deletions

View File

@@ -651,9 +651,7 @@ extern "C" {
static int cpp_playchirp(lua_State *L) {
const char* str = luaL_checkstring(L, 1);
bool value = false;
if (lua_gettop(L) > 1) value = lua_toboolean(L, 2);
playchirp(str, value);
playchirp(str);
return 0;
}