From d804b6ce1700896f46b4e48c072c5c572441c545 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 23 Sep 2024 04:36:23 +1000 Subject: [PATCH] Fix code style warnings for `OpposingDirPolicy` docs fixes ec69033d9 --- src/BizHawk.Client.Common/config/ConfigEnums.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Client.Common/config/ConfigEnums.cs b/src/BizHawk.Client.Common/config/ConfigEnums.cs index 405343f98f..570b995779 100644 --- a/src/BizHawk.Client.Common/config/ConfigEnums.cs +++ b/src/BizHawk.Client.Common/config/ConfigEnums.cs @@ -38,8 +38,10 @@ { /// if both directions are pressed, only the most recently pressed (of the pair) will be sent Priority = 0, + /// if both directions are pressed, they will "cancel out" and neither will be sent Forbid = 1, + /// both directions will be sent when both are pressed Allow = 2, }