Commit 77357a3f authored by P. Christeas's avatar P. Christeas Committed by Alexandre Julliard

Fixed typo in SetGraphicsMode.

parent 9d50dccb
...@@ -940,7 +940,7 @@ INT WINAPI SetGraphicsMode( HDC hdc, INT mode ) ...@@ -940,7 +940,7 @@ INT WINAPI SetGraphicsMode( HDC hdc, INT mode )
* make a lot of sense to me, but that's the way it is. * make a lot of sense to me, but that's the way it is.
*/ */
if (!dc) return 0; if (!dc) return 0;
if ((mode > 0) || (mode <= GM_LAST)) if ((mode > 0) && (mode <= GM_LAST))
{ {
ret = dc->GraphicsMode; ret = dc->GraphicsMode;
dc->GraphicsMode = mode; dc->GraphicsMode = mode;
......
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