Tweak string name of ResourceId to be all one word for easier searching

This commit is contained in:
baldurk
2016-07-06 15:30:08 +03:00
parent 983e8f57c0
commit f3216b38f5
+1 -1
View File
@@ -41,7 +41,7 @@ string ToStrHelper<false, ResourceId>::Get(const ResourceId &el)
{
char tostrBuf[256] = {0};
StringFormat::snprintf(tostrBuf, 255, "ID %llu", el.id);
StringFormat::snprintf(tostrBuf, 255, "ResID_%llu", el.id);
return tostrBuf;
}