Skip to content

Commit

Permalink
Remove duplicate shim for execute_raw_command
Browse files Browse the repository at this point in the history
  • Loading branch information
meeq committed Sep 5, 2023
1 parent 5c8b70e commit e287660
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions include/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit e287660

Please sign in to comment.