1
0

Remove old Android leftovers (#4722)

This commit is contained in:
Mat
2020-05-07 22:14:00 +03:00
committed by GitHub
parent f3b4183dc2
commit c710f6a4ea
22 changed files with 40 additions and 108 deletions

View File

@@ -62,7 +62,7 @@ AString GetUUIDFolderName(const cUUID & a_Uuid)
{
AString UUID = a_Uuid.ToShortString();
AString res(FILE_IO_PREFIX "players/");
AString res("players/");
res.append(UUID, 0, 2);
res.push_back('/');
return res;
@@ -2946,7 +2946,7 @@ AString cPlayer::GetUUIDFileName(const cUUID & a_UUID)
{
AString UUID = a_UUID.ToLongString();
AString res(FILE_IO_PREFIX "players/");
AString res("players/");
res.append(UUID, 0, 2);
res.push_back('/');
res.append(UUID, 2, AString::npos);