1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-29 19:40:35 +00:00

intra:: reduced eps to 1e-5

This commit is contained in:
Zeno Rogue 2021-10-07 12:53:12 +02:00
parent b1774a0763
commit 8217fb474e

View File

@ -425,7 +425,7 @@ EX void check_portal_movement() {
auto p = through_portal();
ld c = camera_speed;
if(p) {
ld eps = 1e-3;
ld eps = 1e-5;
c /= p->id1.scale;
anims::cycle_length /= p->id1.scale;
ld ss = pow(eps, -2);