fix long and int
This commit is contained in:
parent
ea80d1b381
commit
2f252f594a
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue