mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-07 12:05:52 +00:00
14 lines
234 B
C++
14 lines
234 B
C++
#include "pad_device.h"
|
|
|
|
PadDevice::PadDevice() = default;
|
|
|
|
PadDevice::~PadDevice() = default;
|
|
|
|
void PadDevice::ResetTransferState() {}
|
|
|
|
bool PadDevice::Transfer(const u8 data_in, u8* data_out)
|
|
{
|
|
*data_out = 0xFF;
|
|
return false;
|
|
}
|