Remove VertexLoader::ToString

This commit is contained in:
Pokechu22
2021-03-10 18:48:26 -08:00
parent bc7da726a5
commit b6149623aa
9 changed files with 12 additions and 81 deletions

View File

@ -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());
}