diff options
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 5e720dba8e..bf83c8f2c0 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -24,7 +24,8 @@ void CMLua::Load() LoadMirandaModules();
- hScriptsLangpack = GetPluginLangId(MIID_LAST, 0);
+ MUUID last = MIID_LAST;
+ hScriptsLangpack = GetPluginLangId(last, 0);
CLuaLoader loader(this);
loader.LoadScripts();
|