diff options
Diffstat (limited to 'plugins/clist_nicer/skineditor/main.cpp')
-rw-r--r-- | plugins/clist_nicer/skineditor/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/clist_nicer/skineditor/main.cpp b/plugins/clist_nicer/skineditor/main.cpp index a50ccd51ed..fc496c1cc9 100644 --- a/plugins/clist_nicer/skineditor/main.cpp +++ b/plugins/clist_nicer/skineditor/main.cpp @@ -61,6 +61,7 @@ PLUGININFOEX pluginInfo = { HINSTANCE g_hInst = 0;
PLUGINLINK *pluginLink;
struct MM_INTERFACE memoryManagerInterface;
+int hLangpack;
StatusItems_t *StatusItems;
ChangedSItems_t ChangedSItems = {0};
@@ -984,7 +985,8 @@ static int systemModulesLoaded(WPARAM wParam, LPARAM lParam) extern "C" int __declspec(dllexport) Load(PLUGINLINK * link)
{
pluginLink = link;
- return(LoadModule());
+ mir_getLP(&pluginInfo);
+ return(LoadModule());
}
static int ShutdownProc(WPARAM wParam, LPARAM lParam)
|