Remove the excess -mstackrealign and only run the Discord timer if Discord integration is enabled.

This commit is contained in:
OBattler
2025-09-18 00:30:24 +02:00
parent caaa1aad45
commit ac1f091a62
4 changed files with 12 additions and 5 deletions

View File

@@ -2344,8 +2344,11 @@ MainWindow::on_actionEnable_Discord_integration_triggered(bool checked)
if (enable_discord) {
discord_init();
discord_update_activity(dopause);
} else
discordupdate.start(1000);
} else {
discord_close();
discordupdate.stop();
}
#endif
}