Merge pull request #9382 from lioncash/precise

DSPCore: Move PRECISE_BACKLOG define to the interpreter code
This commit is contained in:
Léo Lam 2020-12-29 17:17:59 +01:00 committed by GitHub
commit 5e186f4830
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -25,10 +25,6 @@
namespace DSP
{
// not needed for game ucodes (it slows down interpreter/dspjit32 + easier to compare int VS
// dspjit64 without it)
//#define PRECISE_BACKLOG
// Returns false if the hash fails and the user hits "Yes"
static bool VerifyRoms(const SDSP& dsp)
{

View file

@ -16,6 +16,10 @@
namespace DSP::Interpreter
{
// Not needed for game ucodes (it slows down interpreter + easier to compare int VS
// dspjit64 without it)
//#define PRECISE_BACKLOG
Interpreter::Interpreter(DSPCore& dsp) : m_dsp_core{dsp}
{
InitInstructionTables();