Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions d2gl/src/win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
if (!App.cursor.unlock && !App.cursor.locked)
return 0;

if (GetForegroundWindow() != hWnd)
return 0;

int x = GET_X_LPARAM(lParam);
int y = GET_Y_LPARAM(lParam);

Expand Down