From 05d3e990a55ca7b0e2555afbf3cc94f3a9385196 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 21 Apr 2002 11:47:18 +0000 Subject: [PATCH] - Do match APPLE_16_BIT to the underlying X depth (either 15 or 16 bpp) --- SheepShaver/src/Unix/video_x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/video_x.cpp b/SheepShaver/src/Unix/video_x.cpp index a69e306b..4935326e 100644 --- a/SheepShaver/src/Unix/video_x.cpp +++ b/SheepShaver/src/Unix/video_x.cpp @@ -333,7 +333,7 @@ static bool open_display(void) depth = 8; break; case APPLE_16_BIT: - depth = 16; + depth = xdepth == 15 ? 15 : 16; break; case APPLE_32_BIT: depth = 32;