mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
Fixed compilation errors in clang (in VS)
This commit is contained in:
parent
0ab6e92dc2
commit
6820db3793
4 changed files with 10 additions and 0 deletions
|
@ -27,6 +27,10 @@ PceConsole::PceConsole(Emulator* emu)
|
|||
_emu = emu;
|
||||
}
|
||||
|
||||
PceConsole::~PceConsole()
|
||||
{
|
||||
}
|
||||
|
||||
void PceConsole::Reset()
|
||||
{
|
||||
//The PC Engine has no reset button, behave like power cycle
|
||||
|
|
|
@ -45,6 +45,7 @@ private:
|
|||
|
||||
public:
|
||||
PceConsole(Emulator* emu);
|
||||
virtual ~PceConsole();
|
||||
|
||||
static vector<string> GetSupportedExtensions() { return { ".pce", ".cue", ".sgx", ".hes" }; }
|
||||
static vector<string> GetSupportedSignatures() { return { "HESM" }; }
|
||||
|
|
|
@ -26,6 +26,10 @@ SmsConsole::SmsConsole(Emulator* emu)
|
|||
_emu = emu;
|
||||
}
|
||||
|
||||
SmsConsole::~SmsConsole()
|
||||
{
|
||||
}
|
||||
|
||||
LoadRomResult SmsConsole::LoadRom(VirtualFile& romFile)
|
||||
{
|
||||
vector<uint8_t> romData;
|
||||
|
|
|
@ -39,6 +39,7 @@ public:
|
|||
static vector<string> GetSupportedSignatures() { return { }; }
|
||||
|
||||
SmsConsole(Emulator* emu);
|
||||
virtual ~SmsConsole();
|
||||
|
||||
Emulator* GetEmulator() { return _emu; }
|
||||
SmsCpu* GetCpu() { return _cpu.get(); }
|
||||
|
|
Loading…
Add table
Reference in a new issue