From 3c3c95e072d3f8321a5c30d26797890d6abb893f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 1 Jun 2021 13:04:36 +0200 Subject: [PATCH] simplified textures on mobile --- floorshapes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/floorshapes.cpp b/floorshapes.cpp index 74c80c19..b60b8a28 100644 --- a/floorshapes.cpp +++ b/floorshapes.cpp @@ -1131,7 +1131,7 @@ void draw_shape_for_texture(floorshape* sh) { queuecurve(shiftless(Id), 0x40404000 + sh->fstrength * 192/10, 0, PPR::LINE); } - for(int i=0; i<1000; i++) { + for(int i=0; i<(ISMOBILE ? 10 : 1000); i++) { hyperpoint h1 = hpxy(sd * (6*randd()-3), sd * (6*randd()-3)); hyperpoint h2 = hpxy(sd * (6*randd()-3), sd * (6*randd()-3)); ld d = hdist(h1, h2);