fix maximum input limit for measured angle
authorsvnhieber <svnhieber@f8795833-4959-0410-8ae9-8bcb0cfab428>
Wed, 1 Dec 2010 21:09:16 +0000 (21:09 +0000)
committersvnhieber <svnhieber@f8795833-4959-0410-8ae9-8bcb0cfab428>
Wed, 1 Dec 2010 21:09:16 +0000 (21:09 +0000)
git-svn-id: https://svn.itm.uni-luebeck.de/wisebed/wiselib/trunk/pc_apps/roomba_tests@3659 f8795833-4959-0410-8ae9-8bcb0cfab428

main.cc

diff --git a/main.cc b/main.cc
index 2b1a128..af67cf5 100644 (file)
--- a/main.cc
+++ b/main.cc
@@ -152,7 +152,7 @@ void turn(Roomba& roomba, ControlledMotion& ctrl_motion) {
     measured_angle = getInt(0, "Input measured angle", chargeText(roomba)
       + QString("Orientation should be %1 degree now.\n\n").arg((cur_angle
       + turn_angle) % 360) + "Input measured angle in degree the Roomba has "
-      "turned:", turn_angle, 0, 359, 1, &ok);
+      "turned:", turn_angle, 0, numeric_limits<int>::max(), 1, &ok);
     if(!ok) {
       break;
     }
This page took 0.051107 seconds and 4 git commands to generate.