Cocoa Port: ClientDisplayView::FinishFrameAtIndex() is no longer abstract.
This commit is contained in:
parent
ff2e6cb220
commit
3799af3a01
|
@ -619,6 +619,11 @@ void ClientDisplayView::UpdateView()
|
|||
// Do nothing. This is implementation dependent.
|
||||
}
|
||||
|
||||
void ClientDisplayView::FinishFrameAtIndex(const u8 bufferIndex)
|
||||
{
|
||||
// Do nothing. This is implementation dependent.
|
||||
}
|
||||
|
||||
const NDSDisplayInfo& ClientDisplayView::GetEmuDisplayInfo() const
|
||||
{
|
||||
return this->_emuDisplayInfo;
|
||||
|
|
|
@ -253,7 +253,7 @@ public:
|
|||
virtual void LoadDisplays();
|
||||
virtual void ProcessDisplays();
|
||||
virtual void UpdateView();
|
||||
virtual void FinishFrameAtIndex(const u8 bufferIndex) = 0;
|
||||
virtual void FinishFrameAtIndex(const u8 bufferIndex);
|
||||
|
||||
// Emulator interface
|
||||
const NDSDisplayInfo& GetEmuDisplayInfo() const;
|
||||
|
|
Loading…
Reference in New Issue