Alacroix title: Give Tails his back tails

This commit is contained in:
mazmazz 2019-11-03 18:36:48 -05:00
parent 05ac1a1a21
commit cb6bc67944

View file

@ -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);
} }
} }