File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,6 @@ int vibescript_start(lua_State *state){
1111 // Initialize machine UID
1212 private_set_uid ();
1313
14- #if defined(VIBE_EXTENSION_FUNC ) && defined(VIBE_EXTENSION_LIB_NAME )
15- LuaCEmbed_load_lib_from_c (l ,VIBE_EXTENSION_FUNC ,VIBE_EXTENSION_LIB_NAME );
16- #endif
17-
1814 #ifdef _WIN32
1915 LuaCEmbed_set_global_string (l ,"os_name" ,"windows" );
2016 #elif __APPLE__
@@ -32,6 +28,10 @@ int vibescript_start(lua_State *state){
3228 LuaCEmbed_add_callback (l ,"get_encrypted_prop" ,private_get_encrypted_data );
3329
3430
31+ #if defined(VIBE_EXTENSION_FUNC ) && defined(VIBE_EXTENSION_LIB_NAME )
32+ LuaCEmbed_load_lib_from_c (l ,VIBE_EXTENSION_FUNC ,VIBE_EXTENSION_LIB_NAME );
33+ #endif
34+
3535
3636 return LuaCembed_perform (l );
3737}
You can’t perform that action at this time.
0 commit comments