소스 검색

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 년 전
부모
커밋
5486c42339
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 }