summaryrefslogtreecommitdiff
path: root/progs/egl/egltri.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/egl/egltri.c')
-rw-r--r--progs/egl/egltri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/egl/egltri.c b/progs/egl/egltri.c
index 43190ba7e1..44096d94a2 100644
--- a/progs/egl/egltri.c
+++ b/progs/egl/egltri.c
@@ -201,7 +201,7 @@ int main(int argc, char *argv[])
eglGetModeAttribMESA(d, mode[i], EGL_WIDTH, &w);
eglGetModeAttribMESA(d, mode[i], EGL_HEIGHT, &h);
printf("%3d: %d x %d\n", i, w, h);
- if (w > width && h > height && w <= 1024 && h <= 768) {
+ if (w > width && h > height) {
width = w;
height = h;
chosenMode = i;