aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/runtime.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/runtime.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/runtime.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/runtime.js b/js/helper-classes/RDGE/src/core/script/runtime.js
index 3d824faf..18b9b223 100755
--- a/js/helper-classes/RDGE/src/core/script/runtime.js
+++ b/js/helper-classes/RDGE/src/core/script/runtime.js
@@ -206,15 +206,11 @@ RDGETask = (function() {
206 self.lastTime = self.currTime; 206 self.lastTime = self.currTime;
207 } 207 }
208 208
209 this.start = function() 209 this.start = function() {
210 { 210 this.running = true;
211 if (!this.running) 211 this.currTime = new Date().getTime();
212 { 212 this.lastTime = this.currTime;
213 this.running = true; 213 tasks[this.id]();
214 this.currTime = new Date().getTime();
215 this.lastTime = this.currTime;
216 tasks[this.id]();
217 }
218 } 214 }
219 215
220 this.stop = function() { 216 this.stop = function() {