mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
(connect_wii.c) Cleanups
This commit is contained in:
parent
123b85dbb0
commit
35402884e5
@ -174,7 +174,7 @@ static bool wiimote_is_connected(struct wiimote_t *wm)
|
|||||||
static int wiimote_send(struct wiimote_t* wm,
|
static int wiimote_send(struct wiimote_t* wm,
|
||||||
uint8_t report_type, uint8_t* msg, int len)
|
uint8_t report_type, uint8_t* msg, int len)
|
||||||
{
|
{
|
||||||
uint8_t buf[32];
|
uint8_t buf[32] = {0};
|
||||||
|
|
||||||
buf[0] = WM_SET_REPORT | WM_BT_OUTPUT;
|
buf[0] = WM_SET_REPORT | WM_BT_OUTPUT;
|
||||||
buf[1] = report_type;
|
buf[1] = report_type;
|
||||||
@ -237,7 +237,7 @@ static void wiimote_data_report(struct wiimote_t* wm, uint8_t type)
|
|||||||
|
|
||||||
static void wiimote_set_leds(struct wiimote_t* wm, int leds)
|
static void wiimote_set_leds(struct wiimote_t* wm, int leds)
|
||||||
{
|
{
|
||||||
uint8_t buf;
|
uint8_t buf = {0};
|
||||||
|
|
||||||
if (!wm || !wiimote_is_connected(wm))
|
if (!wm || !wiimote_is_connected(wm))
|
||||||
return;
|
return;
|
||||||
@ -379,7 +379,7 @@ static int wiimote_write_data(struct wiimote_t* wm,
|
|||||||
static int wiimote_read_data(struct wiimote_t* wm, uint32_t addr,
|
static int wiimote_read_data(struct wiimote_t* wm, uint32_t addr,
|
||||||
uint16_t len)
|
uint16_t len)
|
||||||
{
|
{
|
||||||
uint8_t buf[6];
|
uint8_t buf[6] = {0};
|
||||||
int32_t *buf32 = (int32_t*)buf;
|
int32_t *buf32 = (int32_t*)buf;
|
||||||
int16_t *buf16 = (int16_t*)(buf + 4);
|
int16_t *buf16 = (int16_t*)(buf + 4);
|
||||||
|
|
||||||
@ -455,7 +455,7 @@ static int wiimote_handshake(struct wiimote_t* wm,
|
|||||||
|
|
||||||
if (attachment && !WIIMOTE_IS_SET(wm, WIIMOTE_STATE_EXP))
|
if (attachment && !WIIMOTE_IS_SET(wm, WIIMOTE_STATE_EXP))
|
||||||
{
|
{
|
||||||
uint8_t buf;
|
uint8_t buf = 0;
|
||||||
|
|
||||||
/* Expansion port */
|
/* Expansion port */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user