comparison src/com/aurellem/capture/IsoTimer.java @ 70:a67aef438383

minor fix.
author Robert McIntyre <rlm@mit.edu>
date Wed, 29 May 2013 17:31:16 -0400
parents ddb300c5335f
children
comparison
equal deleted inserted replaced
69:ddb300c5335f 70:a67aef438383
43 this.framerate = (long) framerate; 43 this.framerate = (long) framerate;
44 this.ticks = 0; 44 this.ticks = 0;
45 } 45 }
46 46
47 public long getTime() { 47 public long getTime() {
48 return this.ticks; 48 return ticks;
49 } 49 }
50 50
51 public long getResolution() { 51 public long getResolution() {
52 return framerate; 52 return framerate;
53 } 53 }