Browse Source

GUI: Attempt to fix internal compiler error

pull/3714/head
Amrsatrio 1 year ago
parent
commit
2188f0ac87
  1. 4
      ep_gui/GUI.c

4
ep_gui/GUI.c

@ -2542,8 +2542,8 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
} }
} }
HKEY hKey = NULL; HKEY hKey = NULL;
wchar_t* bIsHKLM = wcsstr(section, L"HKEY_LOCAL_MACHINE"); wchar_t* matchHKLM = wcsstr(section, L"HKEY_LOCAL_MACHINE");
bIsHKLM = !bIsHKLM ? NULL : ((bIsHKLM - section) < 3); BOOL bIsHKLM = matchHKLM && (matchHKLM - section) < 3;
DWORD dwDisposition; DWORD dwDisposition;
DWORD dwSize = sizeof(DWORD); DWORD dwSize = sizeof(DWORD);
DWORD value = FALSE; DWORD value = FALSE;

Loading…
Cancel
Save