mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: don't hide base function
As far as I understand you can't mix virtual (select at runtime) and overloading (select at compile time).
This commit is contained in:
parent
47bf88ed3f
commit
c6c6171841
|
@ -116,7 +116,7 @@ namespace Exception
|
|||
|
||||
virtual u32 GetPc() const=0;
|
||||
virtual bool IsDelaySlot() const=0;
|
||||
virtual wxString Message() const { return m_message; }
|
||||
virtual wxString& Message() { return m_message; }
|
||||
|
||||
virtual void Rethrow() const=0;
|
||||
virtual Ps2Generic* Clone() const=0;
|
||||
|
|
|
@ -105,7 +105,7 @@ public:
|
|||
m_reserve.Release();
|
||||
}
|
||||
|
||||
virtual void Reserve( sptr hostptr );
|
||||
void Reserve( sptr hostptr );
|
||||
virtual void Release();
|
||||
|
||||
virtual void Commit();
|
||||
|
@ -172,8 +172,8 @@ public:
|
|||
Release();
|
||||
}
|
||||
|
||||
virtual void Reserve();
|
||||
virtual void Release();
|
||||
void Reserve();
|
||||
void Release();
|
||||
|
||||
void Reset();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue