mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-11 06:59:07 +01:00
Merge pull request #9382 from lioncash/precise
DSPCore: Move PRECISE_BACKLOG define to the interpreter code
This commit is contained in:
commit
5e186f4830
@ -25,10 +25,6 @@
|
|||||||
|
|
||||||
namespace DSP
|
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"
|
// Returns false if the hash fails and the user hits "Yes"
|
||||||
static bool VerifyRoms(const SDSP& dsp)
|
static bool VerifyRoms(const SDSP& dsp)
|
||||||
{
|
{
|
||||||
|
@ -16,6 +16,10 @@
|
|||||||
|
|
||||||
namespace DSP::Interpreter
|
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}
|
Interpreter::Interpreter(DSPCore& dsp) : m_dsp_core{dsp}
|
||||||
{
|
{
|
||||||
InitInstructionTables();
|
InitInstructionTables();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user