Skip to content

Commit 071e6c7

Browse files
authored
Merge pull request #145 from nicolasnoble/re-enable-dynarec
Re-enable dynarec.
2 parents db26cec + d1559ea commit 071e6c7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/core/ix86/iR3000A.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ class X86DynaRecCPU : public PCSX::R3000Acpu {
8080
}
8181
inline bool IsPcValid(uint32_t addr) { return m_psxRecLUT[addr >> 16]; }
8282
inline bool IsConst(unsigned reg) { return m_iRegs[reg].state == ST_CONST; }
83+
inline bool Implemented() final { return true; }
8384

8485
public:
8586
X86DynaRecCPU() : R3000Acpu("x86 DynaRec") {}

src/core/r3000a.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class R3000Acpu {
287287
virtual void Clear(uint32_t Addr, uint32_t Size) = 0;
288288
virtual void Shutdown() = 0;
289289
virtual void SetPGXPMode(uint32_t pgxpMode) = 0;
290-
virtual bool Implemented() { return false; }
290+
virtual bool Implemented() = 0;
291291

292292
const std::string &getName() { return m_name; }
293293

0 commit comments

Comments
 (0)