1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-03 19:15:40 +00:00

minor code cleanup

This commit is contained in:
Marc Zinnschlag 2018-05-07 09:54:42 +02:00
parent 57ee5f9b53
commit 53b6ef6f8c

View file

@ -3,8 +3,8 @@
MWState::QuickSaveManager::QuickSaveManager(std::string &saveName, unsigned int maxSaves) MWState::QuickSaveManager::QuickSaveManager(std::string &saveName, unsigned int maxSaves)
: mSaveName(saveName) : mSaveName(saveName)
, mMaxSaves(maxSaves) , mMaxSaves(maxSaves)
, mOldestSlotVisited(NULL)
, mSlotsVisited(0) , mSlotsVisited(0)
, mOldestSlotVisited(nullptr)
{ {
} }