aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/phys/bphysmodel.cpp
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2023-03-07 22:35:00 -0600
committerAlexander M Pickering <alex@cogarr.net>2023-03-07 22:35:00 -0600
commit65d7db3487cc318dd764481193feb90bb6a897cd (patch)
treed1107b2067204e871f24fba26246824d3534a254 /src/shared/lua_api/phys/bphysmodel.cpp
parent0bc9f8922269233ca651d3765a7b073d5c2c7945 (diff)
downloadbrokengine-65d7db3487cc318dd764481193feb90bb6a897cd.tar.gz
brokengine-65d7db3487cc318dd764481193feb90bb6a897cd.tar.bz2
brokengine-65d7db3487cc318dd764481193feb90bb6a897cd.zip
Use an older name for luaL_reg
Diffstat (limited to 'src/shared/lua_api/phys/bphysmodel.cpp')
-rw-r--r--src/shared/lua_api/phys/bphysmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/lua_api/phys/bphysmodel.cpp b/src/shared/lua_api/phys/bphysmodel.cpp
index e5a9949..45d6a49 100644
--- a/src/shared/lua_api/phys/bphysmodel.cpp
+++ b/src/shared/lua_api/phys/bphysmodel.cpp
@@ -204,12 +204,12 @@ static int newbphysmodel(lua_State* L){
return 1;
}
-static const luaL_reg bphysmodel_f[] = {
+static const luaL_Reg bphysmodel_f[] = {
{"newphysmodel", newbphysmodel},
{0,0},
};
-static const luaL_reg bphysmodel_m[] = {
+static const luaL_Reg bphysmodel_m[] = {
{0, 0},
};