diff --git a/src/ui_interface.h b/src/ui_interface.h index b03df680ee..beed4d431d 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -139,7 +139,7 @@ void InitWarning(const bilingual_str& str); /** Show error message **/ bool InitError(const bilingual_str& str); -constexpr auto AbortError = InitError; +inline bool AbortError(const bilingual_str& str) { return InitError(str); } extern CClientUIInterface uiInterface;