mirror of
https://github.com/InvisibleUp/uvmac.git
synced 2025-03-27 23:29:39 +00:00
Remove a minor compiler error
supposedly, that's the only compiler error in this project. I guess I got them all?
This commit is contained in:
parent
b2840d5f1c
commit
53d2e6953f
@ -1,5 +1,5 @@
|
||||
# Project definition
|
||||
project('microvmac', 'c')
|
||||
project('microvmac', 'c', default_options: ['warning_level=everything', 'prefer_static=true'])
|
||||
|
||||
# Configuration data
|
||||
conf = configuration_data({
|
||||
|
@ -50,13 +50,13 @@
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof(*array))
|
||||
|
||||
typedef struct DevMethods {
|
||||
bool (*init)(void);
|
||||
void (*reset)(void);
|
||||
void (*starttick)(void);
|
||||
void (*endtick)(void);
|
||||
bool (*init)();
|
||||
void (*reset)();
|
||||
void (*starttick)();
|
||||
void (*endtick)();
|
||||
void (*subtick)(int);
|
||||
void (*timebegin)(void);
|
||||
void (*timeend)(void);
|
||||
void (*timebegin)();
|
||||
void (*timeend)();
|
||||
} DevMethods_t;
|
||||
|
||||
const DevMethods_t DEVICES[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user