Mesen-X/Core/NsfPpu.h
2016-06-25 20:46:54 -04:00

22 lines
No EOL
312 B
C++

#pragma once
#include "stdafx.h"
#include "PPU.h"
class NsfPpu : public PPU
{
protected:
void DrawPixel()
{
}
void SendFrame()
{
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
}
public:
NsfPpu(MemoryManager* memoryManager) : PPU(memoryManager)
{
_simpleMode = true;
}
};