Rename to DuckStation

This commit is contained in:
Connor McLaughlin
2019-10-04 13:54:09 +10:00
parent 92ec5a0a14
commit bddbab9d60
61 changed files with 43 additions and 54 deletions

21
src/core/pad_device.cpp Normal file
View File

@ -0,0 +1,21 @@
#include "pad_device.h"
#include "common/state_wrapper.h"
PadDevice::PadDevice() = default;
PadDevice::~PadDevice() = default;
void PadDevice::Reset() {}
bool PadDevice::DoState(StateWrapper& sw)
{
return !sw.HasError();
}
void PadDevice::ResetTransferState() {}
bool PadDevice::Transfer(const u8 data_in, u8* data_out)
{
*data_out = 0xFF;
return false;
}