1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Use IPlatformEnvironment for ObjectRepository

This commit is contained in:
Ted John
2016-12-07 16:54:07 +00:00
parent fd6a750f4e
commit e9c778e886
3 changed files with 45 additions and 42 deletions

View File

@@ -40,6 +40,11 @@ private:
uint64 _fileSize;
public:
FileStream(const std::string &path, int fileMode) :
FileStream(path.c_str(), fileMode)
{
}
FileStream(const utf8 * path, int fileMode)
{
const char * mode;