From 85407734355490c4ada38f86ac6ae76a18fb16b7 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 3 Jan 2020 06:04:01 +1000 Subject: [PATCH] Fix typo --- BizHawk.Client.EmuHawk/MainForm.Events.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs index feebfa7dc5..9845fda04f 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -284,7 +284,7 @@ namespace BizHawk.Client.EmuHawk StopAVIMenuItem.ShortcutKeyDisplayString = Config.HotkeyBindings["Stop A/V"].Bindings; CaptureOSDMenuItem.Checked = Config.AVI_CaptureOSD; - RecordAVMenuItem.Enabled = OSTailoredCode.IsUnixHost || !string.IsNullOrEmpty(Global.Config.VideoWriter) && _currAviWriter == null; + RecordAVMenuItem.Enabled = !OSTailoredCode.IsUnixHost && !string.IsNullOrEmpty(Global.Config.VideoWriter) && _currAviWriter == null; SynclessRecordingMenuItem.Enabled = !OSTailoredCode.IsUnixHost; if (_currAviWriter == null)