Skip to content

Commit

Permalink
Restore full range for the eye tracker simulator.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbucchia committed Jun 10, 2023
1 parent f24930f commit b09345e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pimax-openxr/eye_tracking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ namespace pimax_openxr {
{
// Use the mouse to simulate eye tracking.
RECT rect;
rect.left = 300;
rect.right = 700;
rect.top = 300;
rect.bottom = 700;
rect.left = 1;
rect.right = 999;
rect.top = 1;
rect.bottom = 999;
ClipCursor(&rect);

POINT pt{};
Expand Down

0 comments on commit b09345e

Please sign in to comment.