We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241400c commit 6e423a9Copy full SHA for 6e423a9
Hi3Helper.Plugin.Wuwa/Exports.GameLaunch.cs
@@ -164,12 +164,12 @@ private static bool TryGetGameExecutablePath(GameManagerExtension.RunGameFromGam
164
}
165
166
wuwaGameManager.GetGamePath(out string? gamePath);
167
- string? executablePath = presetConfig.StartExecutableName;
+ presetConfig.comGet_GameExecutableName(out string executablePath);
168
169
gamePath?.NormalizePathInplace();
170
- executablePath?.NormalizePathInplace();
+ executablePath.NormalizePathInplace();
171
172
- if (string.IsNullOrEmpty(gamePath) || string.IsNullOrEmpty(executablePath))
+ if (string.IsNullOrEmpty(gamePath))
173
{
174
return false;
175
0 commit comments