Retrieve identifier names for debugging.

This commit is contained in:
2022-11-01 17:36:18 +08:00
parent 2c9be2ef1e
commit 324c887539
4 changed files with 7 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ namespace Cryville.Crtr {
bool flag = false;
string result = "";
foreach (var s in GetFormattedScoreStrings()) {
result += string.Format(flag ? "\n{0}: {1}" : "{0}: {1}", s.Key, s.Value);
result += string.Format(flag ? "\n{0}: {1}" : "{0}: {1}", IdentifierManager.SharedInstance.Retrieve(s.Key), s.Value);
flag = true;
}
return result;