diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-01-03 21:30:23 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-01-03 21:30:23 +0000 |
commit | f8b41d51f1b760a433c2dbf997ed852b7dd94945 (patch) | |
tree | c7a7cb6f6fc8b8bbdc8e63b9c67fe584f7470a9a /plugins/MirLua/src/mlua_script.cpp | |
parent | 99d0352e7dd98a8d05247f1a446d212499b08a50 (diff) |
MirLua: fixed script loading
git-svn-id: http://svn.miranda-ng.org/main/trunk@16014 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_script.cpp')
-rw-r--r-- | plugins/MirLua/src/mlua_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua_script.cpp b/plugins/MirLua/src/mlua_script.cpp index bfe827418b..8f76f864a4 100644 --- a/plugins/MirLua/src/mlua_script.cpp +++ b/plugins/MirLua/src/mlua_script.cpp @@ -38,7 +38,7 @@ bool CMLuaScript::Load() {
if (luaL_loadfile(L, T2Utf(filePath)))
{
- CallService(MS_NETLIB_LOG, (WPARAM)hNetlib, (LPARAM)lua_tostring(L, -1));
+ Log(lua_tostring(L, -1));
return false;
}
|