Skip to content

Commit

Permalink
Fixed mouse issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Rex109 committed Mar 27, 2022
1 parent e81ee50 commit d67729c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iw3velometer/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ LRESULT __stdcall MessageHandler(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lPar
keyConfig = nullptr;
}

ImGui_ImplWin32_WndProcHandler(hWnd, Msg, wParam, lParam);
if(showGui)
ImGui_ImplWin32_WndProcHandler(hWnd, Msg, wParam, lParam);

return CallWindowProc(oWndProc, hWnd, Msg, wParam, lParam);
}
Expand Down

0 comments on commit d67729c

Please sign in to comment.