# HG changeset patch # User glx # Date 1213647403 0 # Node ID 0250b88672d7317a8a7c6fb058d26b9e287d731b # Parent 088ad1af3261b4ff0ddb7dd138433f5ae4192d93 (svn r13539) -Fix (r13537): signed/unsigned warnings diff -r 088ad1af3261 -r 0250b88672d7 src/video/win32_v.cpp --- a/src/video/win32_v.cpp Mon Jun 16 20:08:30 2008 +0000 +++ b/src/video/win32_v.cpp Mon Jun 16 20:16:43 2008 +0000 @@ -740,7 +740,7 @@ 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