summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderX64.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-03-10 18:48:26 -0800
committerPokechu22 <Pokechu022@gmail.com>2021-05-07 15:42:13 -0700
commitb6149623aae83ff278b7c3de9afd8d2e9bda94a3 (patch)
treeded51ced8c3a1335ea5644028ea85e136dd8bed2 /Source/Core/VideoCommon/VertexLoaderX64.cpp
parentbc7da726a5b8cc8e9c229a62796993a9e1119362 (diff)
Remove VertexLoader::ToString
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderX64.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderX64.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderX64.cpp b/Source/Core/VideoCommon/VertexLoaderX64.cpp
index 2c0a97b54b..27ccad71b5 100644
--- a/Source/Core/VideoCommon/VertexLoaderX64.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderX64.cpp
@@ -53,7 +53,8 @@ VertexLoaderX64::VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att)
GenerateVertexLoader();
WriteProtect();
- const std::string name = ToString();
+ const std::string name =
+ fmt::format("VertexLoaderX64\nVtx desc: \n{}\nVAT:\n{}", vtx_desc, vtx_att);
JitRegister::Register(region, GetCodePtr(), name.c_str());
}