Normalize naming convention a little

This commit is contained in:
Magnus Norddahl 2016-06-13 23:33:52 +02:00
commit 586d5cdf1e
8 changed files with 235 additions and 235 deletions

View file

@ -477,7 +477,7 @@ void R_MapTiltedPlane_C (int y, int x1)
#endif
}
void R_MapTiltedPlane_RGBA (int y, int x1)
void R_MapTiltedPlane_rgba (int y, int x1)
{
int x2 = spanend[y];
@ -509,7 +509,7 @@ void R_MapColoredPlane_C (int y, int x1)
memset (ylookup[y] + x1 + dc_destorg, ds_color, (spanend[y] - x1 + 1));
}
void R_MapColoredPlane_RGBA(int y, int x1)
void R_MapColoredPlane_rgba(int y, int x1)
{
uint32_t *dest = ylookup[y] + x1 + (uint32_t*)dc_destorg;
int count = (spanend[y] - x1 + 1);