1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Rewrite Platform::GetInstallPath

This commit is contained in:
Ted John
2017-12-01 23:48:46 +00:00
parent 114dd097da
commit 87cd9f88b3
15 changed files with 258 additions and 266 deletions

View File

@@ -16,6 +16,7 @@
#ifdef __ANDROID__
#include <cassert>
#include "Platform2.h"
namespace Platform
@@ -39,6 +40,17 @@ namespace Platform
{
return std::string();
}
std::string GetInstallPath()
{
return "/sdcard/openrct2";
}
std::string GetCurrentExecutablePath()
{
assert(false, "GetCurrentExecutablePath() not implemented for Android.");
return std::string();
}
}
#endif