You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(targetHeaderFile.Size>originHeaderFile.Size||originHeaderFile.StatusisFileStatus.Unknown or FileStatus.NoFile||originHeaderFile.Type!=FileType.AUDIO_HEADER||targetHeaderFile.Type!=FileType.AUDIO_HEADER)
92
+
if(originHeaderFile.StatusisFileStatus.Unknown or FileStatus.NoFile
93
+
||originHeaderFile.Type!=FileType.AUDIO_HEADER
94
+
||targetHeaderFile.Type!=FileType.AUDIO_HEADER)
93
95
{
94
96
return;
95
97
}
96
98
99
+
if(targetHeaderFile.Size>originHeaderFile.Size)
100
+
{
101
+
// Makes sure the entire sector of the file is overwritten
102
+
// whenever the source audio header is smaller than the target.
103
+
// This is for handling the edge case of file 0x3133 that
0 commit comments