From 2c3c8bbb905a251fd52a5c1552921acb67ad25a5 Mon Sep 17 00:00:00 2001 From: Vincent Duvert Date: Sun, 29 Jul 2018 22:37:48 +0200 Subject: [PATCH] GCAdapter: Update Android-specific source Fix the Android version of GCAdapter.cpp so it matches the new definitions in GCAdapter.h. --- Source/Core/InputCommon/GCAdapter_Android.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/Core/InputCommon/GCAdapter_Android.cpp b/Source/Core/InputCommon/GCAdapter_Android.cpp index 9c6092dc78..84ccc25f10 100644 --- a/Source/Core/InputCommon/GCAdapter_Android.cpp +++ b/Source/Core/InputCommon/GCAdapter_Android.cpp @@ -369,14 +369,10 @@ void Output(int chan, u8 rumble_command) } } -bool IsDetected() +bool IsDetected(const char** error_message) { return s_detected; } -bool IsDriverDetected() -{ - return true; -} bool DeviceConnected(int chan) { return s_controller_type[chan] != ControllerTypes::CONTROLLER_NONE;