Skip to content

Commit e9c0210

Browse files
committed
Fix outdated strings
1 parent 93ebf09 commit e9c0210

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

USBHelperLauncher/DebugMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public async Task<string> Build()
3232
DateTime now = DateTime.UtcNow;
3333
var hosts = Program.Hosts;
3434
var av = new Dictionary<string, bool>();
35-
sb.Append('-', 10).Append(" Wii U USB Helper Loader Debug Information ").Append('-', 10).AppendLine();
35+
sb.Append('-', 10).Append(" USBHelperLauncher Debug Information ").Append('-', 10).AppendLine();
3636
sb.AppendLine("Debug Time: " + now + " (UTC)");
3737
sb.AppendLine("Session Length: " + (now - Program.GetSessionStart()).ToString(@"hh\:mm\:ss"));
3838
sb.AppendLine("Session GUID: " + Program.GetSessionGuid().ToString());

USBHelperLauncher/Net/RegistrationEndpoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public RegistrationEndpoint() : base("registration.wiiuusbhelper.com") { }
1414
public void GetContributors(Session oS)
1515
{
1616
oS.utilCreateResponseAndBypassServer();
17-
oS.utilSetResponseBody("Wii U USB Helper Launcher made by\n!FailedShack\n© 2018");
17+
oS.utilSetResponseBody("USBHelperLauncher made by\n!FailedShack\n© 2018");
1818
Proxy.LogRequest(oS, this, "Sent credits.");
1919
}
2020

0 commit comments

Comments
 (0)