Fix crash when clicking on column headers in FirmwaresConfig on Mono

This commit is contained in:
YoshiRulz 2020-12-30 00:07:47 +10:00
parent d0edf350f2
commit a80dbfa76b
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 0 deletions

View File

@ -245,6 +245,8 @@ namespace BizHawk.Client.EmuHawk
/// <exception cref="Win32Exception">unmanaged call failed</exception>
public static void SetSortIcon(this ListView listViewControl, int columnIndex, SortOrder order)
{
if (OSTailoredCode.IsUnixHost) return;
const int LVM_GETHEADER = 4127;
const int HDM_GETITEM = 4619;
const int HDM_SETITEM = 4620;