Fix typo that caused loadstate hotkey mapping to display on load config menu item, fix so that movie log loading from savestate doesn't crash if text line is null
This commit is contained in:
parent
157d8b7152
commit
4a28b282f8
|
@ -514,7 +514,7 @@ namespace BizHawk.MultiClient
|
|||
previousSlotToolStripMenuItem.ShortcutKeyDisplayString = Global.Config.PreviousSlot;
|
||||
nextSlotToolStripMenuItem.ShortcutKeyDisplayString = Global.Config.NextSlot;
|
||||
saveToCurrentSlotToolStripMenuItem.ShortcutKeyDisplayString = Global.Config.QuickSave;
|
||||
loadConfigToolStripMenuItem.ShortcutKeyDisplayString = Global.Config.QuickLoad;
|
||||
loadCurrentSlotToolStripMenuItem.ShortcutKeyDisplayString = Global.Config.QuickLoad;
|
||||
}
|
||||
|
||||
private void switchToFullscreenToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
|
|
|
@ -333,6 +333,7 @@ namespace BizHawk.MultiClient
|
|||
while (true)
|
||||
{
|
||||
string line = reader.ReadLine();
|
||||
if (line == null) break;
|
||||
if (line.Trim() == "") continue;
|
||||
if (line == "[Input]") continue;
|
||||
if (line == "[/Input]") break;
|
||||
|
|
Loading…
Reference in New Issue