Correct compiler warnings.

This commit is contained in:
Andrew Alderwick 2021-11-17 22:31:31 +00:00
parent 80f7746c04
commit 8c5ab83c02
1 changed files with 8 additions and 4 deletions

View File

@ -32,7 +32,7 @@ static Uxn u;
static Ppu ppu; static Ppu ppu;
static Apu apu[POLYPHONY]; static Apu apu[POLYPHONY];
static Device *devctrl, *devsystem, *devconsole, *devscreen, *devaudio0; static Device *devctrl, *devsystem, *devconsole, *devscreen, *devaudio0;
unsigned int palette[3]; unsigned int palette[4];
static Uint8 framebuffer[LCD_HEIGHT * LCD_WIDTH * 4]; static Uint8 framebuffer[LCD_HEIGHT * LCD_WIDTH * 4];
static fb_data *lcd_fb = NULL; static fb_data *lcd_fb = NULL;
char audio_buf[AUDIO_BUF_SIZE]; char audio_buf[AUDIO_BUF_SIZE];
@ -49,6 +49,7 @@ memzero8(void *src, uint64_t n)
} }
} }
#if 0
/* taken from uxncli */ /* taken from uxncli */
static void static void
inspect(Stack *s, char *name) inspect(Stack *s, char *name)
@ -64,6 +65,7 @@ inspect(Stack *s, char *name)
DEBUGF("\n"); DEBUGF("\n");
} }
} }
#endif
static void static void
set_palette(Uint8 *addr) set_palette(Uint8 *addr)
@ -115,7 +117,7 @@ console_deo(Device *d, Uint8 port)
if(port == 0x1) if(port == 0x1)
d->vector = peek16(d->dat, 0x0); d->vector = peek16(d->dat, 0x0);
if(port > 0x7) if(port > 0x7)
DEBUGF("%c",(char *)&d->dat[port]); DEBUGF("%c", d->dat[port]);
} }
/* taken from uxnemu */ /* taken from uxnemu */
@ -217,6 +219,7 @@ void
apu_finished_handler(Apu *c) apu_finished_handler(Apu *c)
{ {
DEBUGF("APU done\n"); DEBUGF("APU done\n");
(void) c;
} }
void audio_callback(const void** start, size_t *size) { void audio_callback(const void** start, size_t *size) {
@ -224,7 +227,7 @@ void audio_callback(const void** start, size_t *size) {
*start = audio_buf; *start = audio_buf;
*size = AUDIO_BUF_SIZE; *size = AUDIO_BUF_SIZE;
memzero8(audio_buf, AUDIO_BUF_SIZE); memzero8(audio_buf, AUDIO_BUF_SIZE);
apu_render(&apu[0], audio_buf, audio_buf + AUDIO_BUF_SIZE); apu_render(&apu[0], (Sint16 *)audio_buf, (Sint16 *)(audio_buf + AUDIO_BUF_SIZE));
} }
static Uint8 static Uint8
@ -291,9 +294,10 @@ uxn_halt(Uxn *u, Uint8 error, char *name, int id)
{ {
rb->splash(HZ, "Halted\n"); rb->splash(HZ, "Halted\n");
return 0; return 0;
(void) u; (void) error; (void) name; (void) id;
} }
static void run() { static void run(void) {
while(!devsystem->dat[0xf]) { while(!devsystem->dat[0xf]) {
starttick = *rb->current_tick; starttick = *rb->current_tick;
uxn_eval(&u, devscreen->vector); uxn_eval(&u, devscreen->vector);