From bb66ffb2ae4020f5e99b501d395e8d50e3346c58 Mon Sep 17 00:00:00 2001
From: AnHardt <github@kitelab.de>
Date: Mon, 23 May 2016 00:27:56 +0200
Subject: [PATCH] Correct hardware endstops default

All credits to RicardoGA
---
 Marlin/endstops.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Marlin/endstops.cpp b/Marlin/endstops.cpp
index 22af956c4a..018b9568b5 100644
--- a/Marlin/endstops.cpp
+++ b/Marlin/endstops.cpp
@@ -39,9 +39,9 @@ Endstops endstops;
 Endstops::Endstops() {
   enable_globally(
     #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
-      true
-    #else
       false
+    #else
+      true
     #endif
   );
   enable(true);