lua_func_callback isn't used anymore, remove it

This commit is contained in:
Ilari Liusvaara 2014-01-30 00:44:42 +02:00
parent a2a8fad24e
commit 9a9f58d747
2 changed files with 0 additions and 3 deletions

View file

@ -14,7 +14,6 @@
extern lua::state lsnes_lua_state;
extern lua::function_group lua_func_bit;
extern lua::function_group lua_func_misc;
extern lua::function_group lua_func_callback;
extern lua::function_group lua_func_load;
extern lua::function_group lua_func_zip;

View file

@ -28,7 +28,6 @@ void* synchronous_paint_ctx;
lua::state lsnes_lua_state;
lua::function_group lua_func_bit;
lua::function_group lua_func_misc;
lua::function_group lua_func_callback;
lua::function_group lua_func_load;
lua::function_group lua_func_zip;
@ -457,7 +456,6 @@ void init_lua() throw()
lsnes_lua_state.reset();
lsnes_lua_state.add_function_group(lua_func_bit);
lsnes_lua_state.add_function_group(lua_func_load);
lsnes_lua_state.add_function_group(lua_func_callback);
lsnes_lua_state.add_function_group(lua_func_misc);
lsnes_lua_state.add_function_group(lua_func_zip);
lsnes_lua_state.add_class_group(lua_class_callback);