put back newlines to avoid compilation warnings

This commit is contained in:
Sigrid Solveig Haflínudóttir 2022-01-07 23:46:39 +01:00
parent f0bde9ab98
commit eeb0dc9e45
10 changed files with 10 additions and 10 deletions

View File

@ -28,4 +28,4 @@ extern UxnAudio uxn_audio[POLYPHONY];
Uint8 audio_get_vu(UxnAudio *c); Uint8 audio_get_vu(UxnAudio *c);
int audio_render(UxnAudio *c, Sint16 *sample, Sint16 *end); int audio_render(UxnAudio *c, Sint16 *sample, Sint16 *end);
void audio_start(UxnAudio *c, Uint16 adsr, Uint8 pitch); void audio_start(UxnAudio *c, Uint16 adsr, Uint8 pitch);
void audio_finished_handler(UxnAudio *c); void audio_finished_handler(UxnAudio *c);

View File

@ -49,4 +49,4 @@ controller_special(Device *d, Uint8 key)
uxn_eval(d->u, d->vector); uxn_eval(d->u, d->vector);
d->dat[4] = 0x00; d->dat[4] = 0x00;
} }
} }

View File

@ -13,4 +13,4 @@ WITH REGARD TO THIS SOFTWARE.
void controller_down(Device *d, Uint8 mask); void controller_down(Device *d, Uint8 mask);
void controller_up(Device *d, Uint8 mask); void controller_up(Device *d, Uint8 mask);
void controller_key(Device *d, Uint8 key); void controller_key(Device *d, Uint8 key);
void controller_special(Device *d, Uint8 key); void controller_special(Device *d, Uint8 key);

View File

@ -37,4 +37,4 @@ datetime_dei(Device *d, Uint8 port)
case 0xa: return t->tm_isdst; case 0xa: return t->tm_isdst;
default: return d->dat[port]; default: return d->dat[port];
} }
} }

View File

@ -10,4 +10,4 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE. WITH REGARD TO THIS SOFTWARE.
*/ */
Uint8 datetime_dei(Device *d, Uint8 port); Uint8 datetime_dei(Device *d, Uint8 port);

View File

@ -177,4 +177,4 @@ file_deo(Device *d, Uint8 port)
DEVPOKE16(0x2, res); DEVPOKE16(0x2, res);
break; break;
} }
} }

View File

@ -10,4 +10,4 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE. WITH REGARD TO THIS SOFTWARE.
*/ */
void file_deo(Device *d, Uint8 port); void file_deo(Device *d, Uint8 port);

View File

@ -160,4 +160,4 @@ screen_deo(Device *d, Uint8 port)
break; break;
} }
} }
} }

View File

@ -36,4 +36,4 @@ void screen_clear(UxnScreen *p, Layer *layer);
void screen_redraw(UxnScreen *p, Uint32 *pixels); void screen_redraw(UxnScreen *p, Uint32 *pixels);
Uint8 screen_dei(Device *d, Uint8 port); Uint8 screen_dei(Device *d, Uint8 port);
void screen_deo(Device *d, Uint8 port); void screen_deo(Device *d, Uint8 port);

View File

@ -13,4 +13,4 @@ Uint8 system_dei(Device *d, Uint8 port);
void system_deo(Device *d, Uint8 port); void system_deo(Device *d, Uint8 port);
void system_deo_special(Device *d, Uint8 port); void system_deo_special(Device *d, Uint8 port);
extern Uxn supervisor; extern Uxn supervisor;