summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklua.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklua.c')
-rw-r--r--apps/plugins/lua/rocklua.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lua/rocklua.c b/apps/plugins/lua/rocklua.c
index eec6ee54f9..0d0b1f63f7 100644
--- a/apps/plugins/lua/rocklua.c
+++ b/apps/plugins/lua/rocklua.c
@@ -26,7 +26,7 @@
26#include "rocklib.h" 26#include "rocklib.h"
27#include "rocklib_img.h" 27#include "rocklib_img.h"
28#include "luadir.h" 28#include "luadir.h"
29 29#include "rocklib_events.h"
30 30
31 31
32static const luaL_Reg lualibs[] = { 32static const luaL_Reg lualibs[] = {
@@ -40,6 +40,7 @@ static const luaL_Reg lualibs[] = {
40 {LUA_OSLIBNAME, luaopen_os}, 40 {LUA_OSLIBNAME, luaopen_os},
41 {LUA_ROCKLIBNAME, luaopen_rock}, 41 {LUA_ROCKLIBNAME, luaopen_rock},
42 {LUA_ROCKLIBNAME, luaopen_rock_img}, 42 {LUA_ROCKLIBNAME, luaopen_rock_img},
43 {LUA_ROCKEVENTSNAME, luaopen_rockevents},
43 {LUA_DIRLIBNAME, luaopen_luadir}, 44 {LUA_DIRLIBNAME, luaopen_luadir},
44 {NULL, NULL} 45 {NULL, NULL}
45}; 46};