diff options
Diffstat (limited to 'Source/Core/InputCommon/GCAdapter_Null.cpp')
| -rw-r--r-- | Source/Core/InputCommon/GCAdapter_Null.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/GCAdapter_Null.cpp b/Source/Core/InputCommon/GCAdapter_Null.cpp index bb9422807b..e5b30a312f 100644 --- a/Source/Core/InputCommon/GCAdapter_Null.cpp +++ b/Source/Core/InputCommon/GCAdapter_Null.cpp @@ -4,6 +4,7 @@ #include "InputCommon/GCAdapter.h" #include "Common/CommonTypes.h" +#include "InputCommon/GCPadStatus.h" namespace GCAdapter { @@ -25,8 +26,9 @@ void StartScanThread() void StopScanThread() { } -void Input(int chan, GCPadStatus* pad) +GCPadStatus Input(int chan) { + return {}; } void Output(int chan, u8 rumble_command) { |
