summaryrefslogtreecommitdiff
path: root/src/lua-plugin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua-plugin.cc')
-rw-r--r--src/lua-plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua-plugin.cc b/src/lua-plugin.cc
index 0069123..54dcefc 100644
--- a/src/lua-plugin.cc
+++ b/src/lua-plugin.cc
@@ -47,7 +47,7 @@ void LuaLoadPlugin(Handle * h, Lua * L) throw (GeneralException) {
HMEMORYMODULE module;
- if (!(module = ModuleLoadMemory(buffer)))
+ if (!(module = MemoryLoadLibrary(buffer)))
throw("Can't load library " + h->GetName() + " from memory.");
init_ptr_t init_ptr = (init_ptr_t) MemoryGetProcAddress(module, "init_plugin");