GCAdapter: Return input state by value

This commit is contained in:
Lioncash 2016-08-01 21:16:00 -04:00
parent 2be2b2a4f1
commit 041f4f5eea
6 changed files with 60 additions and 55 deletions

View file

@ -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)
{