Update lua_general.cpp

This commit is contained in:
Akkadius 2020-05-24 21:57:09 -05:00
parent a4b027db58
commit a9790e2779

View File

@ -2218,8 +2218,8 @@ luabind::scope lua_register_general() {
/**
* Content flags
*/
luabind::def("is_content_flag_enabled", (bool(*)(std::string*))&lua_is_content_flag_enabled),
luabind::def("set_content_flag", (void(*)(std::string*, bool*))&lua_set_content_flag)
luabind::def("is_content_flag_enabled", (bool(*)(std::string))&lua_is_content_flag_enabled),
luabind::def("set_content_flag", (void(*)(std::string, bool))&lua_set_content_flag)
];
}