GCAdapter: Update Android-specific source

Fix the Android version of GCAdapter.cpp so it matches the new definitions in GCAdapter.h.
This commit is contained in:
Vincent Duvert 2018-07-29 22:37:48 +02:00
parent 9e7d4d2abb
commit 2c3c8bbb90
1 changed files with 1 additions and 5 deletions

View File

@ -369,14 +369,10 @@ void Output(int chan, u8 rumble_command)
} }
} }
bool IsDetected() bool IsDetected(const char** error_message)
{ {
return s_detected; return s_detected;
} }
bool IsDriverDetected()
{
return true;
}
bool DeviceConnected(int chan) bool DeviceConnected(int chan)
{ {
return s_controller_type[chan] != ControllerTypes::CONTROLLER_NONE; return s_controller_type[chan] != ControllerTypes::CONTROLLER_NONE;