struct PicoVideo *pvid = &est->Pico->video;\r
int tilex,ty,nametab,code,oldcode=-1,blank=-1; // The tile we know is blank\r
int yshift,ymask;\r
- u32 pack;\r
+ u32 pack=0;\r
u32 *hc=NULL, lflags=0; // referenced in DrawTile\r
\r
yshift = 4, ymask = 0x7;\r
sh = (sh ? 0x80 : 0x00); // sh and low prio -> shadow\r
for (; tilex < tend; tilex++)\r
{\r
- int dx, pal;\r
+ int dx, pal=0;\r
\r
code = PicoMem.vram[nametab + tilex];\r
if ((code>>15) != prio) {\r
sh = lflags; // sh and high prio -> no shadow (lflags to suppress warning)\r
for (; tilex < tend; tilex++)\r
{\r
- int dx, pal;\r
+ int dx, pal=0;\r
\r
code = PicoMem.vram[nametab + tilex];\r
if((code>>15) != prio) {\r
static void DrawSpritesM4(void)
{
- struct PicoVideo *pv = &Pico.video;
unsigned int pack;
int zoomed = sprites_zoom & 0x1; // zoomed sprites, e.g. Earthworm Jim
int s = sprites;
/* Draw sprites into a scanline, max 4 */
static void DrawSpritesTMS(void)
{
- struct PicoVideo *pv = &Pico.video;
unsigned int pack;
int zoomed = sprites_zoom & 0x1; // zoomed sprites
int s = sprites;
// the Z80 CPU is stealing some bus cycles from the 68K main CPU when
// accessing the main bus. Account for these by shortening the time
// the 68K CPU runs.
- int z80_buscyc = (Pico.t.z80_buscycles >> 4+(~Pico.m.scanline & 1));
+ int z80_buscyc = Pico.t.z80_buscycles >> (4+(~Pico.m.scanline & 1));
// NB the Z80 isn't fast enough to steal more than half the bandwidth.
// the fastest would be POP cc which takes 10+~3.3*2 z-cyc (~35 cyc) for a
// 16 bit value, but 68k is only blocked for ~16 cyc for the 2 bus cycles.
\r
int PicoVideoSave(void *buf)\r
{\r
- struct VdpFIFO *vf = &VdpFIFO;\r
- struct PicoVideo *pv = &Pico.video;\r
u8 *bp = buf;\r
int i;\r
\r
e_menu_options[i].name = "CPU clock";
e_menu_options[i].enabled = 1;
}
+ // suppress warnings about unused libpicofe funcs
+ (void)me_loop;
+ (void)menu_loop_romsel;
}