Skip to content

Commit

Permalink
don'T pass WM_KILLFOCUS messages to the game with noactivateapp
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Dec 27, 2024
1 parent d58b380 commit 0edec22
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/wndproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam

return real_DefWindowProcA(hWnd, uMsg, wParam, lParam);
}
case WM_KILLFOCUS:
case WM_NCACTIVATE:
{
if (g_config.noactivateapp)
Expand Down

0 comments on commit 0edec22

Please sign in to comment.