changeset 1266:a7bea6db3c3e

SDL_GetVideoMode, part 3: pixel count compare was failing when only 1 video mode was present
author Patrice Mandin <patmandin@gmail.com>
date Wed, 25 Jan 2006 18:11:56 +0000
parents 670e74bf5cc8
children fdc7ef6ecab4
files src/video/SDL_video.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/SDL_video.c	Wed Jan 25 07:04:02 2006 +0000
+++ b/src/video/SDL_video.c	Wed Jan 25 18:11:56 2006 +0000
@@ -489,7 +489,7 @@
 				/* Mode with any dimension smaller or equal than current best ? */
 				if ((sizes[i]->w <= sizes[best]->w) || (sizes[i]->h <= sizes[best]->h)) {
 					/* Now choose the mode that has less pixels */
-					if ((sizes[i]->w * sizes[i]->h) < (sizes[best]->w * sizes[best]->h)) {
+					if ((sizes[i]->w * sizes[i]->h) <= (sizes[best]->w * sizes[best]->h)) {
 						best=i;
 						supported = 1;
 					}