Skip to content

Commit

Permalink
Fixed a compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelIT7 committed Apr 5, 2024
1 parent 6c5c673 commit be937cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/class_angle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void Push_Angle(GarrysMod::Lua::ILuaBase* LUA, QAngle ang)
void Angle_CheckType(GarrysMod::Lua::ILuaBase* LUA, int index)
{
if(!LUA->IsType(index, GarrysMod::Lua::Type::UserData))
luaL_typerror(LUA->GetState(), index, metaname);
LUA->TypeError(index, metaname);
}

bool IsAngle(GarrysMod::Lua::ILuaBase* LUA, int index)
Expand Down

0 comments on commit be937cc

Please sign in to comment.