mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-25 19:11:20 +00:00
Linux: Fixed display issues when loading NSF file via file associations/command line
This commit is contained in:
parent
58046bcd6d
commit
92785063f8
@ -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…
x
Reference in New Issue
Block a user