mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Attempt to fix xcode8 travis build failure.
This commit is contained in:
parent
459a19be57
commit
58fa3bc940
1 changed files with 6 additions and 7 deletions
|
@ -15,14 +15,13 @@
|
|||
#include "../led_driver.h"
|
||||
#include "../../verbosity.h"
|
||||
|
||||
static void null_init(void) { }
|
||||
static void null_free(void) { }
|
||||
static void null_set(int led, int state) { }
|
||||
static void null_led_init(void) { }
|
||||
static void null_led_free(void) { }
|
||||
static void null_led_set(int led, int state) { }
|
||||
|
||||
const led_driver_t null_led_driver = {
|
||||
null_init,
|
||||
null_free,
|
||||
null_set,
|
||||
null_led_init,
|
||||
null_led_free,
|
||||
null_led_set,
|
||||
"null"
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue