Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
chore: more name changing
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Feb 16, 2021
1 parent 9d1c3d3 commit 417e536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VaMLaunchGUI/IntifaceControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void OnConnectClick(object o, EventArgs e)

public async Task ConnectTask(string aAddress)
{
var client = new ButtplugClient("Game Haptics Router");
var client = new ButtplugClient("VaMSync");
client.DeviceAdded += OnDeviceAdded;
client.DeviceRemoved += OnDeviceRemoved;
client.ServerDisconnect += OnDisconnect;
Expand All @@ -123,7 +123,7 @@ public async Task ConnectTask(string aAddress)
await Dispatcher.Invoke(async () =>
{
ConnectedHandler?.Invoke(this, new EventArgs());
_connectStatus.Text = $"Connected{(aAddress == null ? ", restart GHR to disconnect." : " to Remote Buttplug Server")}";
_connectStatus.Text = $"Connected{(aAddress == null ? ", restart VaMSync to disconnect." : " to Remote Buttplug Server")}";
OnScanningClick(null, null);
_scanningButton.IsEnabled = true;
_connectButton.Visibility = Visibility.Collapsed;
Expand Down

0 comments on commit 417e536

Please sign in to comment.