Fix invalid literal error for VS2015

This commit is contained in:
tomcw 2016-03-22 23:34:35 +00:00
parent e98de27039
commit 08a9f8798e
1 changed files with 1 additions and 1 deletions

View File

@ -731,7 +731,7 @@ bool CMouseInterface::LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT sl
m_by6821A = yamlLoadHelper.LoadUint(SS_YAML_KEY_6821A);
if (!yamlLoadHelper.GetSubMap(SS_YAML_KEY_BUFF))
throw std::string("Card: Expected key: "SS_YAML_KEY_BUFF);
throw std::string("Card: Expected key: " SS_YAML_KEY_BUFF);
yamlLoadHelper.LoadMemory(m_byBuff, sizeof(m_byBuff));
yamlLoadHelper.PopMap();