diff options
author | aunsane <aunsane@gmail.com> | 2018-05-20 19:44:27 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-05-20 19:44:27 +0300 |
commit | 5de8252e58fbdbebb8914e99a90bec06a0ff039f (patch) | |
tree | d4022c1e804d636ee933ab1e5475f21f20a47c14 /plugins/MirLua/src/m_sounds.cpp | |
parent | cf39a24da2375575d0f93b95c7ae258aae1658a7 (diff) |
MirLua: environment now inherits CMPluginBase
Diffstat (limited to 'plugins/MirLua/src/m_sounds.cpp')
-rw-r--r-- | plugins/MirLua/src/m_sounds.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/MirLua/src/m_sounds.cpp b/plugins/MirLua/src/m_sounds.cpp index 177148320a..b50bd0c20f 100644 --- a/plugins/MirLua/src/m_sounds.cpp +++ b/plugins/MirLua/src/m_sounds.cpp @@ -7,12 +7,10 @@ static int lua_AddSound(lua_State *L) ptrW section(mir_utf8decodeW(luaL_optstring(L, 3, MODULENAME)));
ptrW filePath(mir_utf8decodeW(lua_tostring(L, 4)));
- int res;
- CMPluginBase *pPlugin = GetPluginByLangId(CMLuaEnvironment::GetEnvironmentId(L));
+ int res = 1;
+ CMPluginBase *pPlugin = CMLuaEnvironment::GetEnvironment(L);
if (pPlugin != nullptr)
res = pPlugin->addSound(name, section, description, filePath);
- else
- res = 1;
lua_pushboolean(L, res == 0);
return 1;
|