summaryrefslogtreecommitdiffstats
path: root/rfb_win32/DeviceFrameBuffer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'rfb_win32/DeviceFrameBuffer.cxx')
-rw-r--r--rfb_win32/DeviceFrameBuffer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfb_win32/DeviceFrameBuffer.cxx b/rfb_win32/DeviceFrameBuffer.cxx
index a4d10211..70975c37 100644
--- a/rfb_win32/DeviceFrameBuffer.cxx
+++ b/rfb_win32/DeviceFrameBuffer.cxx
@@ -146,7 +146,7 @@ void copyDevicePaletteToDIB(HDC dc, DIBSectionBuffer* dib) {
UINT entries = ::GetSystemPaletteEntries(dc, 0, 256, syspalette);
if (entries == 0) {
- vlog.info("resorting to standard 16 colour palette");
+ vlog.info("resorting to standard 16 color palette");
for (unsigned int i=0;i<256;i++) {
int v = (i%16) >= 8 ? 127 : 255;
syspalette[i].peRed = i & 1 ? v : 0;