remove leftover code

This commit is contained in:
yugecin 2018-10-25 21:35:37 +02:00
parent f92270fa22
commit a3c1cfad9e
No known key found for this signature in database
GPG Key ID: 2C5AC035A7068E44

View File

@ -79,7 +79,6 @@ public class ReplayCursor
float txtwidth = txt.getWidth();
float txtheight = txt.getHeight();
GL11.glBegin(GL11.GL_QUADS);
final Point lastpoint = new Point(-1, -1);
for (Trailpart p : trail) {
alpha += alphaIncrease;
GL11.glColor4f(filter.r, filter.g, filter.b, alpha);
@ -91,8 +90,6 @@ public class ReplayCursor
GL11.glVertex3f(p.x + trailwidth2, p.y + trailheight2, 0f);
GL11.glTexCoord2f(0f, txtheight);
GL11.glVertex3f(p.x - trailwidth2, p.y + trailheight2, 0f);
lastpoint.x = p.x;
lastpoint.y = p.y;
}
GL11.glEnd();