mirror of
https://github.com/libretro/libretro-vecx.git
synced 2024-11-23 16:09:53 +00:00
fix some warnings
This commit is contained in:
parent
a540a7afb2
commit
bbd831404d
2
e8910.c
2
e8910.c
@ -206,6 +206,8 @@ void e8910_write(int r, int v)
|
||||
static void
|
||||
e8910_callback(void *userdata, Uint8 *stream, int length)
|
||||
{
|
||||
(void) userdata;
|
||||
|
||||
int outn;
|
||||
Uint8* buf1 = stream;
|
||||
|
||||
|
2
osint.c
2
osint.c
@ -157,7 +157,7 @@ void osint_emuloop(){
|
||||
Uint32 next_time = SDL_GetTicks() + EMU_TIMER;
|
||||
vecx_reset();
|
||||
for(;;){
|
||||
vecx_emu((VECTREX_MHZ / 1000) * EMU_TIMER, 0);
|
||||
vecx_emu((VECTREX_MHZ / 1000) * EMU_TIMER);
|
||||
readevents();
|
||||
|
||||
{
|
||||
|
2
vecx.c
2
vecx.c
@ -921,7 +921,7 @@ static einline void alg_sstep (void)
|
||||
}
|
||||
}
|
||||
|
||||
void vecx_emu (long cycles, int ahead)
|
||||
void vecx_emu (long cycles)
|
||||
{
|
||||
unsigned c, icycles;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user