Selaa lähdekoodia

An unknown port (look at amounts, not percent).

I've seen some ports that have 0 percent, but a few values
in amounts.  (It's a valid state for a port, really!)
Steve Thielemann 3 vuotta sitten
vanhempi
commit
5486c42339
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      galaxy.cpp

+ 1 - 1
galaxy.cpp

@@ -28,7 +28,7 @@ std::ostream &operator<<(std::ostream &os, const port &p) {
 
 bool port::unknown(void) {
   for (int x = 0; x < 3; ++x) {
-    if (percent[x] != 0) return false;
+    if (amount[x] != 0) return false;
   }
   return true;
 }