Save-state: rename SaveHex{4|8|12|16...64} to SaveHexUint{4|8|12|16...64}

This commit is contained in:
tomcw
2016-03-04 21:26:14 +00:00
parent 33ee34b96c
commit d0243c71d7
16 changed files with 100 additions and 100 deletions
+1 -1
View File
@@ -519,7 +519,7 @@ static std::string KeybGetSnapshotStructName(void)
void KeybSaveSnapshot(YamlSaveHelper& yamlSaveHelper)
{
YamlSaveHelper::Label state(yamlSaveHelper, "%s:\n", KeybGetSnapshotStructName().c_str());
yamlSaveHelper.SaveHex8(SS_YAML_KEY_LASTKEY, g_nLastKey);
yamlSaveHelper.SaveHexUint8(SS_YAML_KEY_LASTKEY, g_nLastKey);
}
void KeybLoadSnapshot(YamlLoadHelper& yamlLoadHelper)