Smooth replay finish
This commit is contained in:
parent
5a44fb515b
commit
ab70d727b8
8 changed files with 36 additions and 12 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue