mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
c877f73891
+ Fixed movie recording/playback (for .mmo files)
14 lines
248 B
C++
14 lines
248 B
C++
#include "stdafx.h"
|
|
#include "NsfPpu.h"
|
|
#include "Console.h"
|
|
#include "NotificationManager.h"
|
|
|
|
void NsfPpu::DrawPixel()
|
|
{
|
|
}
|
|
|
|
void NsfPpu::SendFrame()
|
|
{
|
|
_console->GetNotificationManager()->SendNotification(ConsoleNotificationType::PpuFrameDone);
|
|
}
|