Version 0.6.14 release
diff --git a/gpt.cc b/gpt.cc
index 2a2df8f..bcc053a 100644
--- a/gpt.cc
+++ b/gpt.cc
@@ -344,10 +344,9 @@
       cout << UINT32_C(0x00010000) << dec << "\n";
    } // if/else/if
 
-   // If MBR bad, check for an Apple disk signature
-   if ((protectiveMBR.GetValidity() == invalid) &&
-        (((mainHeader.signature << 32) == APM_SIGNATURE1) ||
-        (mainHeader.signature << 32) == APM_SIGNATURE2)) {
+   // Check for an Apple disk signature
+   if (((mainHeader.signature << 32) == APM_SIGNATURE1) ||
+        (mainHeader.signature << 32) == APM_SIGNATURE2) {
       apmFound = 1; // Will display warning message later
    } // if
    cout.fill(' ');