1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 17:54:50 +01:00

clang-format platform

This commit is contained in:
clang-format
2018-06-22 23:04:38 +02:00
committed by Hielke Morsink
parent bb3561f70b
commit 0b3edc70f2
15 changed files with 599 additions and 493 deletions

View File

@@ -19,13 +19,13 @@ namespace Platform
// Android builds currently only read from /sdcard/openrct2*
switch (folder)
{
case SPECIAL_FOLDER::USER_CACHE:
case SPECIAL_FOLDER::USER_CONFIG:
case SPECIAL_FOLDER::USER_DATA:
case SPECIAL_FOLDER::USER_HOME:
return "/sdcard";
default:
return std::string();
case SPECIAL_FOLDER::USER_CACHE:
case SPECIAL_FOLDER::USER_CONFIG:
case SPECIAL_FOLDER::USER_DATA:
case SPECIAL_FOLDER::USER_HOME:
return "/sdcard";
default:
return std::string();
}
}
@@ -44,6 +44,6 @@ namespace Platform
Guard::Assert(false, "GetCurrentExecutablePath() not implemented for Android.");
return std::string();
}
}
} // namespace Platform
#endif