pcsx2: replace memset_sse_a by standard memset

Code is only enabled in dev build.

In the future allocation (therefore the memset) will be done at startup anyway.
This commit is contained in:
Gregory Hainaut 2015-11-03 09:17:31 +01:00
parent 8ab9cea3f7
commit 6e7962e06a
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void RecompiledCodeReserve::OnCommittedBlock( void* block )
// the assembly dump more cleanly. We don't clear the block on Release builds since
// it can add a noticeable amount of overhead to large block recompilations.
memset_sse_a<0xcc>( block, m_blocksize * __pagesize );
memset(block, 0xCC, m_blocksize * __pagesize);
}
}