diff --git a/src/openrct2/platform/Platform.Win32.cpp b/src/openrct2/platform/Platform.Win32.cpp index 47648220f6..f07c599bc5 100644 --- a/src/openrct2/platform/Platform.Win32.cpp +++ b/src/openrct2/platform/Platform.Win32.cpp @@ -524,9 +524,15 @@ namespace Platform bool FindApp(const std::string& app, std::string* output) { - log_warning("FindApp not implemented for Windows!"); + log_warning("FindApp() not implemented for Windows!"); return false; } + + int32_t Execute(const std::string& command, std::string* output) + { + log_warning("Execute() not implemented for Windows!"); + return -1; + } } // namespace Platform #endif