fix long and int

This commit is contained in:
interfisch 2021-05-24 18:59:47 +02:00
parent ea80d1b381
commit 2f252f594a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class Timeline
while ((cID+1 < logdata.getRowCount()) && ( t2 > (logdata.getRow(cID+1).getFloat("time")))) { //while endtime not reached
TableRow row = logdata.getRow(cID);
nextTimeData=(long)(logdata.getRow(cID+1).getFloat("time")*1000); //get time and convert from seconds to ms
nextTimeData=(int)(logdata.getRow(cID+1).getFloat("time")*1000); //get time and convert from seconds to ms
lastTimeMillis=nextTimeMillis;