From f14edf90d4f7ecc2b869274aeaad3aeed06ad524 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Thu, 15 Aug 2019 22:52:29 +0200 Subject: HDB: Remove two unused variables --- engines/hdb/lua-script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index c180778ac7..c8f562d579 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -1165,7 +1165,7 @@ static int startMusic(lua_State *L) { g_hdb->_lua->checkParameters("startMusic", 1); lua_pop(L, 1); - bool error = g_hdb->_sound->startMusic((SoundType)s1); + g_hdb->_sound->startMusic((SoundType)s1); return 0; } @@ -1180,7 +1180,7 @@ static int fadeInMusic(lua_State *L) { g_hdb->_lua->checkParameters("fadeInMusic", 2); lua_pop(L, 2); - bool error = g_hdb->_sound->fadeInMusic((SoundType)s1, ramp); + g_hdb->_sound->fadeInMusic((SoundType)s1, ramp); return 0; } -- cgit v1.2.3