Commit 9985c421 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

wingdi: Fix typo in definition of BLTALIGNMENT (spotted by Choe Hwanjin).

parent cfe36cc8
...@@ -498,7 +498,7 @@ INT PSDRV_GetDeviceCaps( PSDRV_PDEVICE *physDev, INT cap ) ...@@ -498,7 +498,7 @@ INT PSDRV_GetDeviceCaps( PSDRV_PDEVICE *physDev, INT cap )
case VREFRESH: case VREFRESH:
case DESKTOPVERTRES: case DESKTOPVERTRES:
case DESKTOPHORZRES: case DESKTOPHORZRES:
case BTLALIGNMENT: case BLTALIGNMENT:
return 0; return 0;
default: default:
FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap ); FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap );
......
...@@ -255,7 +255,7 @@ INT X11DRV_GetDeviceCaps( X11DRV_PDEVICE *physDev, INT cap ) ...@@ -255,7 +255,7 @@ INT X11DRV_GetDeviceCaps( X11DRV_PDEVICE *physDev, INT cap )
case VREFRESH: case VREFRESH:
case DESKTOPVERTRES: case DESKTOPVERTRES:
case DESKTOPHORZRES: case DESKTOPHORZRES:
case BTLALIGNMENT: case BLTALIGNMENT:
return 0; return 0;
default: default:
FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap ); FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap );
......
...@@ -1634,7 +1634,7 @@ typedef struct tagEXTLOGPEN ...@@ -1634,7 +1634,7 @@ typedef struct tagEXTLOGPEN
#define VREFRESH 116 #define VREFRESH 116
#define DESKTOPVERTRES 117 #define DESKTOPVERTRES 117
#define DESKTOPHORZRES 118 #define DESKTOPHORZRES 118
#define BTLALIGNMENT 119 #define BLTALIGNMENT 119
#define SHADEBLENDCAPS 120 #define SHADEBLENDCAPS 120
#define COLORMGMTCAPS 121 #define COLORMGMTCAPS 121
......
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