Skip to content

Commit

Permalink
Fix test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-mp committed Oct 29, 2024
1 parent 97d1b83 commit 753a849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/model-views.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
return RS2_SENSOR_MODE_QVGA;
else if ((width == 640 && height == 480) || (height == 640 && width == 480))
return RS2_SENSOR_MODE_VGA;
else if ((width == 1024 && height == 768) || (height == 768 && width == 1024))
else if ((width == 1024 && height == 768) || (width == 768 && height == 1024))
return RS2_SENSOR_MODE_XGA;
else
return RS2_SENSOR_MODE_COUNT;
Expand Down

0 comments on commit 753a849

Please sign in to comment.