CPU/NewRec: Fix lui/mfc0 not getting called in CPU PGXP mode

This commit is contained in:
Stenzek
2023-12-06 16:45:17 +10:00
parent 407049cd91
commit 185af2b039
16 changed files with 468 additions and 458 deletions

View File

@ -14,7 +14,7 @@
#include "gte.h"
#include "host.h"
#include "pcdrv.h"
#include "pgxp.h"
#include "cpu_pgxp.h"
#include "settings.h"
#include "system.h"
#include "timing_event.h"
@ -191,6 +191,9 @@ void CPU::Reset()
GTE::Reset();
if (g_settings.gpu_pgxp_enable)
PGXP::Reset();
// TODO: This consumes cycles...
SetPC(RESET_VECTOR);
}