diff --git a/renderdoc/replay/type_helpers.cpp b/renderdoc/replay/type_helpers.cpp index 1efa75358..1419800a8 100644 --- a/renderdoc/replay/type_helpers.cpp +++ b/renderdoc/replay/type_helpers.cpp @@ -41,7 +41,7 @@ string ToStrHelper::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; }