trackeditor: show elevation in dump

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9290 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
iobyte 2024-01-27 20:56:00 +00:00
parent a2b972fed3
commit 55420f78f1
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public class Properties
private static Properties instance = new Properties();
private Vector<ActionListener> propertiesListeners = new Vector<ActionListener>();
public final String title = "sd2-trackeditor";
public final String version = "1.4.21";
public final String version = "1.4.22";
private String path;
private double imageScale = 1;

View File

@ -2288,7 +2288,7 @@ public class Segment implements Cloneable
System.out.println(indent + " points : " + points.length);
for (int i = 0; i < points.length; i++)
{
System.out.println(indent + " points[" + i + "] " + points[i].x + ", " + points[i].y);
System.out.println(indent + " points[" + i + "] " + points[i].x + ", " + points[i].y + ", " + points[i].z);
}
}
else