mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 09:39:44 +00:00
c877f73891
+ Fixed movie recording/playback (for .mmo files)
26 lines
418 B
C++
26 lines
418 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "PPU.h"
|
|
|
|
struct HdScreenInfo;
|
|
struct HdPackData;
|
|
class ControlManager;
|
|
class Console;
|
|
|
|
class HdPpu : public PPU
|
|
{
|
|
private:
|
|
HdScreenInfo *_screenInfo[2];
|
|
HdScreenInfo *_info;
|
|
uint32_t _version;
|
|
HdPackData *_hdData = nullptr;
|
|
|
|
protected:
|
|
void DrawPixel() override;
|
|
|
|
public:
|
|
HdPpu(shared_ptr<Console> console, HdPackData* hdData);
|
|
~HdPpu();
|
|
|
|
void SendFrame() override;
|
|
}; |