Skip to content

Commit 6afbc9b

Browse files
committed
hotfix for hotswap. working well
1 parent b056d80 commit 6afbc9b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ LUA_SRC += lua/public.lua
174174
LUA_SRC += lua/quote.lua
175175
LUA_SRC += lua/sequins.lua
176176
LUA_SRC += lua/timeline.lua
177+
LUA_SRC += lua/hotswap.lua
177178
LUA_SRC += $(BUILD_DIR)/iihelp.lua
178179
LUA_SRC += $(II_TARGET)
179180

lib/l_bootstrap.c

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include "lua/sequins.lua.h"
1919
#include "lua/quote.lua.h"
2020
#include "lua/timeline.lua.h"
21+
#include "lua/hotswap.lua.h"
2122

2223
#include "build/ii_lualink.h" // generated C header for linking to lua
2324

@@ -41,6 +42,7 @@ const struct lua_lib_locator Lua_libs[] =
4142
, { "lua_sequins" , lua_sequins , true}
4243
, { "lua_quote" , lua_quote , true}
4344
, { "lua_timeline" , lua_timeline , true}
45+
, { "lua_hotswap" , lua_hotswap , true}
4446
, { NULL , NULL , true}
4547
};
4648

0 commit comments

Comments
 (0)