diff --git a/BizHawk.Emulation/Consoles/Atari/docs/Atari2600_CompatibilityList.xlsx b/BizHawk.Emulation/Consoles/Atari/docs/Atari2600_CompatibilityList.xlsx index 1168b1479a..6c52489c88 100644 Binary files a/BizHawk.Emulation/Consoles/Atari/docs/Atari2600_CompatibilityList.xlsx and b/BizHawk.Emulation/Consoles/Atari/docs/Atari2600_CompatibilityList.xlsx differ diff --git a/BizHawk.MultiClient/RecentFiles.cs b/BizHawk.MultiClient/RecentFiles.cs index 4a98afd3c4..9c4b504d4f 100644 --- a/BizHawk.MultiClient/RecentFiles.cs +++ b/BizHawk.MultiClient/RecentFiles.cs @@ -80,6 +80,8 @@ namespace BizHawk.MultiClient public string GetRecentFileByPosition(int position) { + if (recentlist.Count == 0) + return ""; return recentlist[position]; } }