mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-01 13:57:53 -05:00
citra_qt: Log settings on launch
This commit is contained in:
@ -39,6 +39,7 @@ void ConfigureDialog::applyConfiguration() {
|
||||
ui->debugTab->applyConfiguration();
|
||||
ui->webTab->applyConfiguration();
|
||||
Settings::Apply();
|
||||
Settings::LogSettings();
|
||||
}
|
||||
|
||||
void ConfigureDialog::PopulateSelectionList() {
|
||||
|
@ -2042,6 +2042,9 @@ int main(int argc, char* argv[]) {
|
||||
GMainWindow main_window;
|
||||
// After settings have been loaded by GMainWindow, apply the filter
|
||||
main_window.show();
|
||||
|
||||
Settings::LogSettings();
|
||||
|
||||
int result = app.exec();
|
||||
detached_tasks.WaitForAllTasks();
|
||||
return result;
|
||||
|
Reference in New Issue
Block a user