--- sourceforge.net/trunk/rdesktop/xwin.c 2003/10/22 10:55:11 508 +++ sourceforge.net/trunk/rdesktop/xwin.c 2003/10/28 03:30:51 517 @@ -705,7 +705,11 @@ return False; } - if (g_owncolmap != True) + /* private colour map code only works for 8 bpp */ + if (g_owncolmap && (g_bpp > 8)) + g_owncolmap = False; + + if (!g_owncolmap) { g_xcolmap = DefaultColormapOfScreen(g_screen); if (g_depth <= 8)