mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
SPU: Optimize gpr reset for MSVC
This commit is contained in:
parent
aeed349a99
commit
765bd6b6c6
1 changed files with 1 additions and 1 deletions
|
@ -1033,7 +1033,7 @@ std::string spu_thread::dump() const
|
||||||
|
|
||||||
void spu_thread::cpu_init()
|
void spu_thread::cpu_init()
|
||||||
{
|
{
|
||||||
gpr = {};
|
std::memset(gpr.data(), 0, gpr.size() * sizeof(gpr[0]));
|
||||||
fpscr.Reset();
|
fpscr.Reset();
|
||||||
|
|
||||||
ch_mfc_cmd = {};
|
ch_mfc_cmd = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue