SOme backtrack fixes

This commit is contained in:
LightCat 2018-08-02 21:56:19 +02:00
parent dae31355b3
commit d5452a3535

View File

@ -302,7 +302,7 @@ float getLatency()
int getTicks()
{
return max(min(*latency / 15, 65), 12);
return max(min(*latency / 15 + getTicks2() == 12 ? 12 : 0, 65), 12);
}
int getTicks2()