diff --git a/Runtime/CGameHintInfo.cpp b/Runtime/CGameHintInfo.cpp index 6b2fded69..887e15224 100644 --- a/Runtime/CGameHintInfo.cpp +++ b/Runtime/CGameHintInfo.cpp @@ -39,7 +39,7 @@ int CGameHintInfo::FindHintIndex(std::string_view str) { return it != gameHints.cend() ? it - gameHints.cbegin() : -1; } -CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream& in, const CVParamTransfer, CObjectReference*) { +CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream& in, const CVParamTransfer&, CObjectReference*) { in.readUint32Big(); s32 version = in.readInt32Big(); diff --git a/Runtime/CGameHintInfo.hpp b/Runtime/CGameHintInfo.hpp index 2c530cc99..0ce7b2caa 100644 --- a/Runtime/CGameHintInfo.hpp +++ b/Runtime/CGameHintInfo.hpp @@ -45,5 +45,5 @@ public: static int FindHintIndex(std::string_view str); }; -CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream&, const CVParamTransfer, CObjectReference*); +CFactoryFnReturn FHintFactory(const SObjectTag&, CInputStream&, const CVParamTransfer&, CObjectReference*); } // namespace urde