Changeset - r9535:b053d6801b52
[Not reviewed]
master
0 1 0
glx - 16 years ago 2008-06-16 20:16:43
glx@openttd.org
(svn r13539) -Fix (r13537): signed/unsigned warnings
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/video/win32_v.cpp
Show inline comments
 
@@ -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
0 comments (0 inline, 0 general)