mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Alacroix title: Give Tails his back tails
This commit is contained in:
parent
05ac1a1a21
commit
cb6bc67944
1 changed files with 12 additions and 12 deletions
|
@ -2808,29 +2808,29 @@ void F_TitleScreenDrawer(void)
|
||||||
//
|
//
|
||||||
SINT8 taftcount = (finalecount - (TAILSIDLE)) % 41;
|
SINT8 taftcount = (finalecount - (TAILSIDLE)) % 41;
|
||||||
if (taftcount >= 0 && taftcount < 5 )
|
if (taftcount >= 0 && taftcount < 5 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[0 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[0 ], sc);
|
||||||
else if (taftcount >= 5 && taftcount < 9 )
|
else if (taftcount >= 5 && taftcount < 9 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[1 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[1 ], sc);
|
||||||
else if (taftcount >= 9 && taftcount < 12 )
|
else if (taftcount >= 9 && taftcount < 12 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[2 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[2 ], sc);
|
||||||
else if (taftcount >= 12 && taftcount < 14 )
|
else if (taftcount >= 12 && taftcount < 14 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[3 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[3 ], sc);
|
||||||
else if (taftcount >= 14 && taftcount < 17 )
|
else if (taftcount >= 14 && taftcount < 17 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[3 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[3 ], sc);
|
||||||
else if (taftcount >= 17 && taftcount < 21 )
|
else if (taftcount >= 17 && taftcount < 21 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[5 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[5 ], sc);
|
||||||
else if (taftcount >= 21 && taftcount < 24 )
|
else if (taftcount >= 21 && taftcount < 24 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[6 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[6 ], sc);
|
||||||
else if (taftcount >= 24 && taftcount < 25 )
|
else if (taftcount >= 24 && taftcount < 25 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[7 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[7 ], sc);
|
||||||
else if (taftcount >= 25 && taftcount < 28 )
|
else if (taftcount >= 25 && taftcount < 28 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[8 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[8 ], sc);
|
||||||
else if (taftcount >= 28 && taftcount < 31 )
|
else if (taftcount >= 28 && taftcount < 31 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[9 ], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[9 ], sc);
|
||||||
else if (taftcount >= 31 && taftcount < 35 )
|
else if (taftcount >= 31 && taftcount < 35 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[10], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[10], sc);
|
||||||
else if (taftcount >= 35 && taftcount < 41 )
|
else if (taftcount >= 35 && taftcount < 41 )
|
||||||
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTAFT[11], sc);
|
V_DrawSciencePatch(TAILSX<<FRACBITS, TAILSY<<FRACBITS, 0, TTTABT[11], sc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue