mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
8ab9cea3f7
commit
6e7962e06a
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue