mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
GCAdapter: Return input state by value
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user