mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-07-04 04:05:54 +00:00
NGameList: Remove const qualifier
Fixes the build.
This commit is contained in:
parent
e9df5625e6
commit
456530605f
@ -74,7 +74,7 @@ void SerializeGameList(IArchive& Arc)
|
|||||||
ENSURE(Arc.ParamBegin("Game", 0));
|
ENSURE(Arc.ParamBegin("Game", 0));
|
||||||
|
|
||||||
// Determine which game is being serialized
|
// Determine which game is being serialized
|
||||||
const auto Game = static_cast<EGame>(GameIdx);
|
auto Game = static_cast<EGame>(GameIdx);
|
||||||
Arc << SerialParameter("ID", Game, SH_Attribute);
|
Arc << SerialParameter("ID", Game, SH_Attribute);
|
||||||
ASSERT(Game != EGame::Invalid);
|
ASSERT(Game != EGame::Invalid);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user