Commit 3bfa88b1 authored by Davis King's avatar Davis King

Fixed a warning you get in mingw.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403108
parent 768016e8
......@@ -408,7 +408,7 @@ namespace dlib
result = keycode;
// make the result lower case if we need to.
if (shift && caps || !caps && !shift)
if ((shift && caps) || (!caps && !shift))
result = result - 'A' + 'a';
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment