mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
Fixed typo in SetGraphicsMode.
This commit is contained in:
parent
9d50dccbdc
commit
77357a3f56
@ -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.
|
||||
*/
|
||||
if (!dc) return 0;
|
||||
if ((mode > 0) || (mode <= GM_LAST))
|
||||
if ((mode > 0) && (mode <= GM_LAST))
|
||||
{
|
||||
ret = dc->GraphicsMode;
|
||||
dc->GraphicsMode = mode;
|
||||
|
Loading…
Reference in New Issue
Block a user