FullscreenUI: Replace some std::string instances with TinyString

This commit is contained in:
Stenzek
2023-12-06 20:12:08 +10:00
parent e835f118b7
commit 6557033b98
2 changed files with 10 additions and 12 deletions

View File

@ -90,7 +90,6 @@ void CPU::PGXP::Initialize()
{
std::memset(g_state.pgxp_gpr, 0, sizeof(g_state.pgxp_gpr));
std::memset(g_state.pgxp_cop0, 0, sizeof(g_state.pgxp_cop0));
std::memset(g_state.pgxp_gte, 0, sizeof(g_state.pgxp_gte));
if (!s_mem)
@ -142,7 +141,6 @@ void CPU::PGXP::Shutdown()
std::memset(g_state.pgxp_gte, 0, sizeof(g_state.pgxp_gte));
std::memset(g_state.pgxp_gpr, 0, sizeof(g_state.pgxp_gpr));
std::memset(g_state.pgxp_cop0, 0, sizeof(g_state.pgxp_cop0));
}