fix some gcc warnings

This commit is contained in:
kub 2022-10-14 21:22:33 +00:00
parent e44c606f39
commit 043ccbf45f
4 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ static u32 HighCache2A[2*41*(TILE_ROWS+1)+1+1]; // caches for high layers
static u32 HighCache2B[2*41*(TILE_ROWS+1)+1+1];
unsigned short *PicoCramHigh=PicoMem.cram; // pointer to CRAM buff (0x40 shorts), converted to native device color (works only with 16bit for now)
void (*PicoPrepareCram)()=0; // prepares PicoCramHigh for renderer to use
void (*PicoPrepareCram)(void) = NULL; // prepares PicoCramHigh for renderer to use
// stuff available in asm:
@ -711,7 +711,7 @@ static void DrawDisplayFull(void)
}
PICO_INTERNAL void PicoFrameFull()
PICO_INTERNAL void PicoFrameFull(void)
{
pprof_start(draw);