From e28766047e78cc3b51109c1df0fa76bb8d5f2073 Mon Sep 17 00:00:00 2001 From: Christopher Bonhage Date: Tue, 5 Sep 2023 17:16:13 -0400 Subject: [PATCH] Remove duplicate shim for execute_raw_command --- include/controller.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/include/controller.h b/include/controller.h index 01a19ee459..c164fa84d9 100755 --- a/include/controller.h +++ b/include/controller.h @@ -245,10 +245,7 @@ typedef struct controller_origin_data /// @cond __attribute__((deprecated("use joybus_exec_command instead"))) -static inline void execute_raw_command( int controller, int command, int bytesout, int bytesin, unsigned char *out, unsigned char *in ) -{ - joybus_exec_command(controller, command, bytesout, bytesin, out, in); -} +void execute_raw_command( int controller, int command, int bytesout, int bytesin, unsigned char *out, unsigned char *in ); __attribute__((deprecated("use joypad_read_n64_inputs_sync instead"))) void controller_read( struct controller_data * data );