diff --git a/src/BizHawk.Client.Common/Api/BizHawkSystemIdToCoreSystemEnumConverter.cs b/src/BizHawk.Client.Common/Api/BizHawkSystemIdToCoreSystemEnumConverter.cs index 27ccf09c6c..ca04d6a47b 100644 --- a/src/BizHawk.Client.Common/Api/BizHawkSystemIdToCoreSystemEnumConverter.cs +++ b/src/BizHawk.Client.Common/Api/BizHawkSystemIdToCoreSystemEnumConverter.cs @@ -22,7 +22,7 @@ namespace BizHawk.Client.Common /// The converter parameter to use; null in our case /// The culture to use in the converter /// A that is equivalent to BizHawk SystemId - /// Thrown when SystemId hasn't been found + /// Thrown when SystemId hasn't been found public object Convert(object value, Type targetType, object parameter, CultureInfo cultureInfo) { return (string) value switch @@ -75,7 +75,7 @@ namespace BizHawk.Client.Common /// /// you want to convert /// A that is equivalent to BizHawk SystemId - /// Thrown when SystemId hasn't been found + /// Thrown when SystemId hasn't been found public CoreSystem Convert(string value) { return (CoreSystem)Convert(value, null, null, CultureInfo.CurrentCulture); @@ -90,7 +90,7 @@ namespace BizHawk.Client.Common /// The converter parameter to use; null in our case /// The culture to use in the converter /// A that is used by BizHawk SystemId - /// Thrown when hasn't been found + /// Thrown when hasn't been found public object ConvertBack(object value, Type targetType, object parameter, CultureInfo cultureInfo) { return (CoreSystem) value switch @@ -141,7 +141,7 @@ namespace BizHawk.Client.Common /// /// you want to convert /// A that is used by BizHawk SystemId - /// Thrown when hasn't been found + /// Thrown when hasn't been found public string ConvertBack(CoreSystem value) { return (string)ConvertBack(value, null, null, CultureInfo.CurrentCulture);