- removed unused code from serializer

This commit is contained in:
alexey.lysiuk 2019-11-27 12:30:09 +02:00 committed by drfrag
parent a92f71917a
commit e5bb66eb4f

View file

@ -68,7 +68,6 @@
#include "g_levellocals.h"
#include "utf8.h"
char nulspace[1024 * 1024 * 4];
bool save_full = false; // for testing. Should be removed afterward.
//==========================================================================
@ -305,15 +304,12 @@ struct FReader
rapidjson::Document mDoc;
TArray<DObject *> mDObjects;
rapidjson::Value *mKeyValue = nullptr;
int mPlayers[MAXPLAYERS];
bool mObjectsRead = false;
FReader(const char *buffer, size_t length)
{
rapidjson::Document doc;
mDoc.Parse(buffer, length);
mObjects.Push(FJSONObject(&mDoc));
memset(mPlayers, -1, sizeof(mPlayers));
}
rapidjson::Value *FindKey(const char *key)