SetPalette() => GFX2_SetPalette()

This commit is contained in:
Thomas BERNARD
2020-02-06 23:33:38 +01:00
parent 3d53a91046
commit 6550e704fc
7 changed files with 7 additions and 14 deletions

View File

@@ -240,7 +240,7 @@ void Screen_FillRect(int x, int y, int w, int h, byte color)
}
}
int SetPalette(const T_Components * colors, int firstcolor, int ncolors)
int GFX2_SetPalette(const T_Components * colors, int firstcolor, int ncolors)
{
if (screen == NULL) return 0;
memcpy(screen->palette + firstcolor, colors, ncolors * sizeof(T_Components));