mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +00:00
- fixed compilation with GCC 5 and newer
src/r_data/a_dynlightdata.cpp:72:44: error: no matching function for call to ‘FSerializer::Array(const char [5], int [5], int, std::nullptr_t)’
This commit is contained in:
parent
1aeef146e0
commit
7d88e2ec6b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ FSerializer &Serialize(FSerializer &arc, const char *key, FLightDefaults &value,
|
||||||
if (arc.BeginObject(key))
|
if (arc.BeginObject(key))
|
||||||
{
|
{
|
||||||
arc("name", value.m_Name)
|
arc("name", value.m_Name)
|
||||||
.Array("args", value.m_Args, 5, nullptr)
|
.Array("args", value.m_Args, 5)
|
||||||
("param", value.m_Param)
|
("param", value.m_Param)
|
||||||
("pos", value.m_Pos)
|
("pos", value.m_Pos)
|
||||||
("type", value.m_type)
|
("type", value.m_type)
|
||||||
|
|
Loading…
Reference in a new issue