diff --git a/src/Unuk/Game.cpp b/src/Unuk/Game.cpp index 2e612cc..57f0226 100644 --- a/src/Unuk/Game.cpp +++ b/src/Unuk/Game.cpp @@ -420,7 +420,7 @@ void Game::SaveSavegame(void) { TiXmlElement* saveElement = new TiXmlElement("save"); TiXmlElement* nameElement = new TiXmlElement("name"); - TiXmlText* nameText = new TiXmlText("Allanis"); //TODO: replace with _player->GetName() when it works. --konom + TiXmlText* nameText = new TiXmlText("Allanis"); //TODO: replace with _player->GetName() when it works. nameElement->LinkEndChild(nameText); /* diff --git a/src/libUnuk/Engine/MemManager.cpp b/src/libUnuk/Engine/MemManager.cpp index 1fd6b5c..95a2ca2 100644 --- a/src/libUnuk/Engine/MemManager.cpp +++ b/src/libUnuk/Engine/MemManager.cpp @@ -277,7 +277,7 @@ void DumpLeakSnapshot(bool fromStart) { AllocationLink* currentLink = hashMap[i].first; while(currentLink != 0) { if(!currentLink->allocationUnit->markedSnapshot || fromStart) { - //if(strcmp(currentLink->allocationUnit->allocatedFrom, "(???: line 0)") != 0) + //if(strcmp(currentLink->allocationUnit->allocatedFrom, "(???: line 0)") != 0) { if(!strstr(currentLink->allocationUnit->allocatedFrom, "???")) { // Temp: show only over 2MB //if(currentLink->allocationUnit->requestedSize > 1*1024*1024) {