c877f73891
+ Fixed movie recording/playback (for .mmo files)
19 lines
433 B
C++
19 lines
433 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
class MemoryManager;
|
|
class Console;
|
|
class BaseMapper;
|
|
struct RomData;
|
|
|
|
class MapperFactory
|
|
{
|
|
private:
|
|
static BaseMapper* GetMapperFromID(RomData &romData);
|
|
|
|
public:
|
|
static constexpr uint16_t FdsMapperID = 65535;
|
|
static constexpr uint16_t NsfMapperID = 65534;
|
|
|
|
static shared_ptr<BaseMapper> InitializeFromFile(shared_ptr<Console> console, string romFilename, vector<uint8_t> &fileData);
|
|
};
|