From 6ed165c29f0908f6cb1b98f389a0af9e1d2e1e5d Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sat, 29 Dec 2018 00:27:36 -0600 Subject: [PATCH] Changed ScpVBus download URL --- DS4Windows/DS4Forms/WelcomeDialog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS4Windows/DS4Forms/WelcomeDialog.cs b/DS4Windows/DS4Forms/WelcomeDialog.cs index bbad1af..5d9d61c 100644 --- a/DS4Windows/DS4Forms/WelcomeDialog.cs +++ b/DS4Windows/DS4Forms/WelcomeDialog.cs @@ -43,7 +43,7 @@ namespace DS4Windows WebClient wb = new WebClient(); if (!driverinstalling) { - wb.DownloadFileAsync(new Uri("http://23.239.26.40/ds4windows/files/Virtual Bus Driver.zip"), exepath + "\\VBus.zip"); + wb.DownloadFileAsync(new Uri("https://github.com/Ryochan7/DS4Windows/raw/jay/extras/Virtual Bus Driver.zip"), exepath + "\\VBus.zip"); wb.DownloadProgressChanged += wb_DownloadProgressChanged; wb.DownloadFileCompleted += wb_DownloadFileCompleted; driverinstalling = true;