fix: Simulator -> Emulator

This commit is contained in:
status102
2023-09-22 17:13:00 +08:00
parent 1ce4843662
commit caef5c411d

View File

@@ -732,7 +732,7 @@ namespace MaaWpfGui.ViewModels.UI
}
}
private async Task<bool> ConnectToSimulator()
private async Task<bool> ConnectToEmulator()
{
string errMsg = string.Empty;
bool connected = await Task.Run(() => Instances.AsstProxy.AsstConnect(ref errMsg));
@@ -829,7 +829,7 @@ namespace MaaWpfGui.ViewModels.UI
return;
}
if (!await ConnectToSimulator())
if (!await ConnectToEmulator())
{
return;
}
@@ -987,7 +987,7 @@ namespace MaaWpfGui.ViewModels.UI
return;
}
if (!await ConnectToSimulator())
if (!await ConnectToEmulator())
{
return;
}