Save-state: renamed SaveMapValueMemory() to SaveMemory()

This commit is contained in:
tomcw
2016-02-24 22:54:53 +00:00
parent 11789c9023
commit 18feddceef
6 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -673,7 +673,7 @@ void CMouseInterface::SaveSnapshot(class YamlSaveHelper& yamlSaveHelper)
// New label
{
YamlSaveHelper::Label buffer(yamlSaveHelper, "%s:\n", SS_YAML_KEY_BUFF);
yamlSaveHelper.SaveMapValueMemory(m_byBuff, sizeof(m_byBuff));
yamlSaveHelper.SaveMemory(m_byBuff, sizeof(m_byBuff));
}
yamlSaveHelper.Save("%s: %d\n", SS_YAML_KEY_BUFFPOS, m_nBuffPos);