fix some trivial warnings
authornotaz <notasas@gmail.com>
Tue, 18 Mar 2025 22:47:36 +0000 (00:47 +0200)
committeririxxxx <31696370+irixxxx@users.noreply.github.com>
Fri, 21 Mar 2025 21:10:24 +0000 (22:10 +0100)
pico/draw.c
pico/mode4.c
pico/pico_cmn.c
pico/videoport.c
platform/common/menu_pico.c

index e3cfe03..0e241af 100644 (file)
@@ -600,7 +600,7 @@ static void DrawWindow(int tstart, int tend, int prio, int sh,
   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
@@ -634,7 +634,7 @@ static void DrawWindow(int tstart, int tend, int prio, int sh,
     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
@@ -652,7 +652,7 @@ static void DrawWindow(int tstart, int tend, int prio, int sh,
     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
index 43bc255..afe6831 100644 (file)
@@ -220,7 +220,6 @@ static void ParseSpritesM4(int scanline)
 
 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;
@@ -500,7 +499,6 @@ static void ParseSpritesTMS(int scanline)
 /* 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;
index 74f75eb..39a3d15 100644 (file)
@@ -50,7 +50,7 @@ static int SekSyncM68k(int once)
     // 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.
index 4fe54d2..583b258 100644 (file)
@@ -1229,8 +1229,6 @@ void PicoVideoCacheSAT(int load)
 \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
index 69bf60d..e3c28a4 100644 (file)
@@ -1819,4 +1819,7 @@ void menu_init(void)
                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;
 }