mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
sms wip: initial graphics support
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@761 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
67e50ff8d9
commit
200772b790
8 changed files with 251 additions and 37 deletions
|
@ -74,7 +74,6 @@ struct TileStrip
|
|||
// stuff available in asm:
|
||||
#ifdef _ASM_DRAW_C
|
||||
void DrawWindow(int tstart, int tend, int prio, int sh);
|
||||
void BackFill(int reg7, int sh);
|
||||
void DrawAllSprites(unsigned char *sprited, int prio, int sh);
|
||||
void DrawTilesFromCache(int *hc, int sh, int rlim);
|
||||
void DrawSpritesSHi(unsigned char *sprited);
|
||||
|
@ -1140,7 +1139,7 @@ static void DrawAllSprites(unsigned char *sprited, int prio, int sh)
|
|||
|
||||
// --------------------------------------------
|
||||
|
||||
static void BackFill(int reg7, int sh)
|
||||
void BackFill(int reg7, int sh)
|
||||
{
|
||||
unsigned int back;
|
||||
|
||||
|
@ -1303,7 +1302,7 @@ static void FinalizeLine8bit(int sh)
|
|||
}
|
||||
}
|
||||
|
||||
static void (*FinalizeLine)(int sh) = FinalizeLineBGR444;
|
||||
static void (*FinalizeLine)(int sh);
|
||||
|
||||
// --------------------------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue