Fix refactor derp

This commit is contained in:
Phillip Stephens 2017-11-04 19:10:50 -07:00
parent 44df36d64a
commit 140c24bf60
1 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ CDummyGameArea::CDummyGameArea(CInputStream& in, int idx, int mlvlVersion)
x54_docks.emplace_back(in, x14_transform); x54_docks.emplace_back(in, x14_transform);
} }
bool CDummyGameArea::IGetScriptingMemoryAlways() const std::pair<std::unique_ptr<u8[]>, s32> CDummyGameArea::IGetScriptingMemoryAlways() const
{ {
return GetScriptingMemoryAlways(*this); return GetScriptingMemoryAlways(*this);
} }
@ -493,7 +493,7 @@ CGameArea::CGameArea(CAssetId mreaId)
CBooModel::SetDummyTextures(false); CBooModel::SetDummyTextures(false);
} }
bool CGameArea::IGetScriptingMemoryAlways() const std::pair<std::unique_ptr<u8[]>, s32> CGameArea::IGetScriptingMemoryAlways() const
{ {
return GetScriptingMemoryAlways(*this); return GetScriptingMemoryAlways(*this);
} }