Skip to content

Commit

Permalink
Merge pull request #18527 from GermanAizek/fix-xy
Browse files Browse the repository at this point in the history
[Windows/GEDebugger] Fixed set 0xFFFFFFFF for pixel Y coordinate
  • Loading branch information
hrydgard committed Dec 12, 2023
2 parents 19a427c + 6360cec commit 144ecf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Windows/GEDebugger/GEDebugger.cpp
Expand Up @@ -305,7 +305,7 @@ void CGEDebugger::SetupPreviews() {
break;
case ID_GEDBG_TRACK_PIXEL_STOP:
primaryTrackX_ = 0xFFFFFFFF;
primaryTrackX_ = 0xFFFFFFFF;
primaryTrackY_ = 0xFFFFFFFF;
break;
case ID_GEDBG_ENABLE_PREVIEW:
previewsEnabled_ ^= 1;
Expand Down Expand Up @@ -350,7 +350,7 @@ void CGEDebugger::SetupPreviews() {
break;
case ID_GEDBG_TRACK_PIXEL_STOP:
secondTrackX_ = 0xFFFFFFFF;
secondTrackX_ = 0xFFFFFFFF;
secondTrackY_ = 0xFFFFFFFF;
break;
case ID_GEDBG_ENABLE_PREVIEW:
previewsEnabled_ ^= 2;
Expand Down

0 comments on commit 144ecf0

Please sign in to comment.