Stop useless manifest conflict checks

This commit is contained in:
MikeMaximus
2018-08-01 10:02:46 -06:00
parent daa5f928bf
commit 794b0f9908
+7 -4
View File
@@ -143,10 +143,13 @@ Public Class mgrBackup
End If End If
End If End If
If mgrRestore.CheckManifest(oGame.ID) Then 'A manifest check is only required when "Save Multiple Backups" is disabled
If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then If Not oGame.AppendTimeStamp Then
RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True) If mgrRestore.CheckManifest(oGame.ID) Then
Return False If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True)
Return False
End If
End If End If
End If End If