Update gui.c

This commit is contained in:
offhub 2024-03-10 15:51:31 +03:00
parent c2be2c3002
commit d73ce18764
No known key found for this signature in database
GPG Key ID: 7B12A8941851DA59
1 changed files with 2 additions and 2 deletions

View File

@ -1607,7 +1607,7 @@ _FX LRESULT Gui_WindowProcW(
if (uMsg == WM_QUERYENDSESSION)
{
if (SbieApi_QueryConfBool(NULL, "BlockInterferePower", FALSE))
if (SbieApi_QueryConfBool(NULL, L"BlockInterferePower", FALSE))
return TRUE;
}
@ -1668,7 +1668,7 @@ _FX LRESULT Gui_WindowProcA(
if (uMsg == WM_QUERYENDSESSION)
{
if (SbieApi_QueryConfBool(NULL, "BlockInterferePower", FALSE))
if (SbieApi_QueryConfBool(NULL, L"BlockInterferePower", FALSE))
return TRUE;
}
wndproc = __sys_GetPropW(hWnd, (LPCWSTR)Gui_WindowProcOldA_Atom);