mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-04 17:32:47 +00:00
GCAdapter: Return input state by value
This commit is contained in:
parent
2be2b2a4f1
commit
041f4f5eea
6 changed files with 60 additions and 55 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue