forked from TeamTofuShop/segatools
chuniio: use HRESULT instead of int for chuni_io_led_init()
This commit is contained in:
@ -140,9 +140,10 @@ void fgo_io_get_analogs(int16_t *stick_x, int16_t *stick_y)
|
||||
}
|
||||
}
|
||||
|
||||
int fgo_io_led_init()
|
||||
HRESULT fgo_io_led_init(void)
|
||||
{
|
||||
return 0;
|
||||
// return 0;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
void fgo_io_led_set_leds(uint8_t board, uint8_t *rgb)
|
||||
|
@ -77,7 +77,7 @@ void fgo_io_get_analogs(int16_t *stick_x, int16_t *stick_y);
|
||||
overlap with each other. Ensuring synchronization inside your IO DLL is
|
||||
your responsibility. */
|
||||
|
||||
int fgo_io_led_init();
|
||||
HRESULT fgo_io_led_init(void);
|
||||
|
||||
/* Update the RGB LEDs.
|
||||
|
||||
|
Reference in New Issue
Block a user