summaryrefslogtreecommitdiff
path: root/client/activity-demo/Piztor/src/com/example/piztor/Running.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/activity-demo/Piztor/src/com/example/piztor/Running.java')
-rw-r--r--client/activity-demo/Piztor/src/com/example/piztor/Running.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/activity-demo/Piztor/src/com/example/piztor/Running.java b/client/activity-demo/Piztor/src/com/example/piztor/Running.java
index 4ea1526..f4b6135 100644
--- a/client/activity-demo/Piztor/src/com/example/piztor/Running.java
+++ b/client/activity-demo/Piztor/src/com/example/piztor/Running.java
@@ -29,7 +29,9 @@ public class Running extends Activity {
protected void onStart() {
super.onStart();
v = (MyView) findViewById(R.id.view);
- v.setup(c, b, 31, 121);
+ v.setup(c, b, -1, -1);
+ Tracker tr = new Tracker(controller, Running.this);
+ new Thread(tr).run();
}
@Override