Smooth replay finish

This commit is contained in:
Miloslav Ciz 2025-06-23 17:14:29 +02:00
parent 5a44fb515b
commit ab70d727b8
8 changed files with 36 additions and 12 deletions

View file

@ -116,6 +116,11 @@ int _LCR_strCmp(const char *s1, const char *s2)
return 1;
}
int _LCR_min(int a, int b)
{
return a <= b ? a : b;
}
int _LCR_triangleWinding(int_least32_t x0, int_least32_t y0, int_least32_t x1,
int_least32_t y1, int_least32_t x2, int_least32_t y2)
{