mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 20:42:24 +00:00
850102bbdc
Movies: Rewrote format to support all IO devices and console types Netplay: Now supports all IO devices and console types
19 lines
242 B
C++
19 lines
242 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "PPU.h"
|
|
|
|
class NsfPpu : public PPU
|
|
{
|
|
protected:
|
|
void DrawPixel()
|
|
{
|
|
}
|
|
|
|
void SendFrame()
|
|
{
|
|
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
|
|
}
|
|
|
|
public:
|
|
using PPU::PPU;
|
|
}; |