minor fix: swapped LoadConfiguration() and LoadDevice(). The previous order caused the configuration to load incorrectly.

This commit is contained in:
uncavo-hdmi 2025-02-07 15:23:07 +01:00
parent 287d68c2cc
commit 5034ef18c9

View File

@ -366,8 +366,8 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
Dispatcher.UIThread.Post(() =>
{
LoadDevices();
LoadConfiguration();
LoadDevice();
LoadConfiguration();
});
}