sms wip: initial graphics support
[picodrive.git] / pico / draw.c
index 9b9ce91..4acf22f 100644 (file)
@@ -74,7 +74,6 @@ struct TileStrip
 // stuff available in asm:\r
 #ifdef _ASM_DRAW_C\r
 void DrawWindow(int tstart, int tend, int prio, int sh);\r
-void BackFill(int reg7, int sh);\r
 void DrawAllSprites(unsigned char *sprited, int prio, int sh);\r
 void DrawTilesFromCache(int *hc, int sh, int rlim);\r
 void DrawSpritesSHi(unsigned char *sprited);\r
@@ -1140,7 +1139,7 @@ static void DrawAllSprites(unsigned char *sprited, int prio, int sh)
 \r
 // --------------------------------------------\r
 \r
-static void BackFill(int reg7, int sh)\r
+void BackFill(int reg7, int sh)\r
 {\r
   unsigned int back;\r
 \r
@@ -1303,7 +1302,7 @@ static void FinalizeLine8bit(int sh)
   }\r
 }\r
 \r
-static void (*FinalizeLine)(int sh) = FinalizeLineBGR444;\r
+static void (*FinalizeLine)(int sh);\r
 \r
 // --------------------------------------------\r
 \r