Linux: Fixed display issues when loading NSF file via file associations/command line
This commit is contained in:
parent
58046bcd6d
commit
92785063f8
1 changed files with 3 additions and 3 deletions
|
@ -162,8 +162,6 @@ namespace Mesen.GUI.Forms
|
|||
Task.Run(() => CloudSyncHelper.Sync());
|
||||
}
|
||||
|
||||
this.LoadGameFromCommandLine(_commandLineArgs);
|
||||
|
||||
if(ConfigManager.Config.PreferenceInfo.AutomaticallyCheckForUpdates) {
|
||||
CheckForUpdates(false);
|
||||
}
|
||||
|
@ -199,6 +197,8 @@ namespace Mesen.GUI.Forms
|
|||
if(ConfigManager.Config.WindowSize.HasValue) {
|
||||
this.Size = ConfigManager.Config.WindowSize.Value;
|
||||
}
|
||||
|
||||
this.LoadGameFromCommandLine(_commandLineArgs);
|
||||
}
|
||||
|
||||
protected override void OnClosing(CancelEventArgs e)
|
||||
|
@ -790,7 +790,7 @@ namespace Mesen.GUI.Forms
|
|||
if(!updateTextOnly) {
|
||||
this.ctrlNsfPlayer.ResetCount();
|
||||
}
|
||||
this.ctrlNsfPlayer.Visible = true;
|
||||
this.ctrlNsfPlayer.Visible = true;
|
||||
this.ctrlNsfPlayer.Focus();
|
||||
|
||||
_currentGame = InteropEmu.NsfGetHeader().GetSongName();
|
||||
|
|
Loading…
Add table
Reference in a new issue