]> git.mxchange.org Git - simgear.git/commitdiff
Signs change <= to <
authorMarkus Pargmann <mpargmann@allfex.org>
Mon, 18 Jun 2012 08:00:29 +0000 (10:00 +0200)
committerThorstenB <brehmt@gmail.com>
Mon, 18 Jun 2012 18:47:05 +0000 (20:47 +0200)
simgear/scene/tgdb/apt_signs.cxx

index 15b4c4e0b944e05864f67e3db18819483214b994..3bd313aa163d3ed17be26fd55b848aebff54c839 100644 (file)
@@ -373,7 +373,7 @@ void AirportSignBuilder::addSign(const SGGeod& pos, double heading, const std::s
                     n = n.substr(0, 2);
                 }
                 if (n == "@Y") {
-                    if (size <= 3) {
+                    if (size < 4) {
                         sign_height = HT[size < 0 ? 3 : size];
                         newmat = "YellowSign";
                         newtype = 'Y';
@@ -381,7 +381,7 @@ void AirportSignBuilder::addSign(const SGGeod& pos, double heading, const std::s
                     }
 
                 } else if (n == "@R") {
-                    if (size <= 3) {
+                    if (size < 4) {
                         sign_height = HT[size < 0 ? 3 : size];
                         newmat = "RedSign";
                         newtype = 'R';
@@ -389,7 +389,7 @@ void AirportSignBuilder::addSign(const SGGeod& pos, double heading, const std::s
                     }
 
                 } else if (n == "@L") {
-                    if (size <= 3) {
+                    if (size < 4) {
                         sign_height = HT[size < 0 ? 3 : size];
                         newmat = "FramedSign";
                         newtype = 'L';