NGameList: Remove const qualifier

Fixes the build.
This commit is contained in:
Lioncash 2020-06-18 04:52:32 -04:00
parent e9df5625e6
commit 456530605f
1 changed files with 1 additions and 1 deletions

View File

@ -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);