File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project ToolsVersion =" Current" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
33 <PropertyGroup >
4- <SelectedDevice >Oculus Quest </SelectedDevice >
5- <ActiveDebugProfile >Oculus Quest </ActiveDebugProfile >
4+ <SelectedDevice >Google Pixel 6 </SelectedDevice >
5+ <ActiveDebugProfile >Google Pixel 6 </ActiveDebugProfile >
66 <DefaultDevice >Pixel_5_API_30</DefaultDevice >
77 <AndroidDesignerPreferredTheme >AppTheme</AndroidDesignerPreferredTheme >
88 <AndroidDesignerPreferredDevice >Nexus 4</AndroidDesignerPreferredDevice >
Original file line number Diff line number Diff line change @@ -671,9 +671,10 @@ public void DownloadCompleted(DownloadManager m)
671671 {
672672 if ( m . isObb )
673673 {
674- string bbackupDir = CoreService . coreVars . QAVSBackupDir + m . packageName + "/" + m . backupName + "/" ;
675- FileManager . RecreateDirectoryIfExisting ( bbackupDir ) ;
676- File . Move ( m . tmpPath , bbackupDir + "obb/" + "main.obb" ) ;
674+ string bbackupDir = CoreService . coreVars . QAVSBackupDir + m . packageName + "/" + m . backupName + "/obb/" ;
675+ FileManager . CreateDirectoryIfNotExisting ( bbackupDir ) ;
676+ FileManager . DeleteFileIfExisting ( bbackupDir + "main.obb" ) ;
677+ File . Move ( m . tmpPath , bbackupDir + "main.obb" ) ;
677678 Logger . Log ( "Moved obb" ) ;
678679 return ;
679680 }
You can’t perform that action at this time.
0 commit comments