Updates: Check for updates on startup if the option is enabled

This commit is contained in:
Sour 2019-05-11 22:08:30 -04:00
parent 28a02a464d
commit 23b6ca9e64

View file

@ -81,6 +81,10 @@ namespace Mesen.GUI.Forms
ctrlRecentGames.Visible = true;
}
if(ConfigManager.Config.Preferences.AutomaticallyCheckForUpdates) {
UpdateHelper.CheckForUpdates(true);
}
this.Resize += frmMain_Resize;
}