diff --git a/src/openrct2/platform/Platform.Android.cpp b/src/openrct2/platform/Platform.Android.cpp index 8262a55007..aabd5f328c 100644 --- a/src/openrct2/platform/Platform.Android.cpp +++ b/src/openrct2/platform/Platform.Android.cpp @@ -16,7 +16,7 @@ #ifdef __ANDROID__ -#include +#include "../core/Guard.hpp" #include "Platform2.h" namespace Platform @@ -48,7 +48,7 @@ namespace Platform std::string GetCurrentExecutablePath() { - assert(false, "GetCurrentExecutablePath() not implemented for Android."); + Guard::Assert(false, "GetCurrentExecutablePath() not implemented for Android."); return std::string(); } }