File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ class X86DynaRecCPU : public PCSX::R3000Acpu {
80
80
}
81
81
inline bool IsPcValid (uint32_t addr) { return m_psxRecLUT[addr >> 16 ]; }
82
82
inline bool IsConst (unsigned reg) { return m_iRegs[reg].state == ST_CONST; }
83
+ inline bool Implemented () final { return true ; }
83
84
84
85
public:
85
86
X86DynaRecCPU () : R3000Acpu(" x86 DynaRec" ) {}
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ class R3000Acpu {
287
287
virtual void Clear (uint32_t Addr, uint32_t Size) = 0;
288
288
virtual void Shutdown () = 0;
289
289
virtual void SetPGXPMode (uint32_t pgxpMode) = 0;
290
- virtual bool Implemented () { return false ; }
290
+ virtual bool Implemented () = 0;
291
291
292
292
const std::string &getName () { return m_name; }
293
293
You can’t perform that action at this time.
0 commit comments