Correction of DPI

This commit is contained in:
Aurélie Delhaie
2022-05-25 11:58:09 +02:00
parent 5f92fcafa0
commit 56e94d8dfe
27 changed files with 517 additions and 441 deletions

View File

@@ -320,6 +320,10 @@ namespace OpenSaveCloudClient.Core
public async Task DownloadGamesAsync(List<GameSave> toDownload)
{
string cachePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "osc", "cache");
if (!Directory.Exists(cachePath))
{
Directory.CreateDirectory(cachePath);
}
string archivePath;
GameUploadToken? gut;
foreach (GameSave game in toDownload)