Skip to content

Commit 86e574a

Browse files
committed
change where window is opened and correct log message
1 parent 435875f commit 86e574a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/XIVLauncher.Core/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ private static void Main(string[] args)
245245

246246
CreateCompatToolsInstance();
247247

248-
Log.Debug("Creating Veldrid devices...");
248+
Log.Debug("Creating SDL3 devices...");
249249

250250
var version = AppUtil.GetGitHash();
251251
unsafe
@@ -270,7 +270,6 @@ private static void Main(string[] args)
270270
}
271271

272272
SDL.SetWindowPosition(window, (int)SDL.SDL_WINDOWPOS_CENTERED_MASK, (int)SDL.SDL_WINDOWPOS_CENTERED_MASK);
273-
SDL.ShowWindow(window);
274273
Log.Debug("SDL OK!");
275274

276275
gpuDevice = SDL.CreateGPUDevice(
@@ -299,6 +298,7 @@ private static void Main(string[] args)
299298

300299
var launcherClientConfig = LauncherClientConfig.GetAsync().GetAwaiter().GetResult();
301300
launcherApp = new LauncherApp(storage, launcherClientConfig.frontierUrl, launcherClientConfig.cutOffBootver);
301+
SDL.ShowWindow(window);
302302

303303
var done = false;
304304
while (!done)

0 commit comments

Comments
 (0)