(svn r13539) -Fix (r13537): signed/unsigned warnings

This commit is contained in:
glx 2008-06-16 20:16:43 +00:00
parent 0fff18b044
commit 4782df757c
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ static void FindResolutions()
uint j;
for (j = 0; j < n; j++) {
if (_resolutions[j].width == dm.dmPelsWidth && _resolutions[j].height == dm.dmPelsHeight) break;
if (_resolutions[j].width == (int)dm.dmPelsWidth && _resolutions[j].height == (int)dm.dmPelsHeight) break;
}
/* In the previous loop we have checked already existing/added resolutions if