From 5a7746c3a5dd1349a9db5ef909c4fd956fcb4aed Mon Sep 17 00:00:00 2001 From: ManuelMcLure Date: Sat, 4 May 2019 20:55:51 -0700 Subject: [PATCH] Fix HOST_PROMPT_SUPPORT compile issue (#13847) --- Marlin/src/feature/host_actions.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/feature/host_actions.h b/Marlin/src/feature/host_actions.h index e6f77cb63cbe..b521f26a3547 100644 --- a/Marlin/src/feature/host_actions.h +++ b/Marlin/src/feature/host_actions.h @@ -21,7 +21,9 @@ */ #pragma once -#include "../inc/MarlinConfig.h" +#include "../inc/MarlinConfigPre.h" + +#include void host_action(const char * const pstr, const bool eol=true);