1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 15:23:01 +01:00

Stub FindApp on Windows

This commit is contained in:
Gymnasiast
2020-12-12 23:31:02 +01:00
parent 268e39d12a
commit 72cc8df395
2 changed files with 7 additions and 1 deletions

View File

@@ -30,6 +30,7 @@
# endif
# include "../OpenRCT2.h"
# include "../common.h"
# include "../core/Path.hpp"
# include "../core/String.hpp"
# include "Platform2.h"
@@ -520,6 +521,12 @@ namespace Platform
{
return false;
}
bool FindApp(const std::string& app, std::string* output)
{
log_warning("FindApp not implemented for Windows!");
return false;
}
} // namespace Platform
#endif

View File

@@ -130,7 +130,6 @@ namespace Platform
}
return false;
}
}
#endif