From 92c4c72000f1f3a7b44428f50870a9a1da712a53 Mon Sep 17 00:00:00 2001 From: kanjitalk755 Date: Thu, 12 Jan 2023 21:04:23 +0900 Subject: [PATCH] Fix for Raspberry Pi 1 --- 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 c9afdfda..0f980037 100644 --- a/SheepShaver/src/Unix/video_x.cpp +++ b/SheepShaver/src/Unix/video_x.cpp @@ -559,7 +559,7 @@ static bool open_window(int width, int height) // 1-bit mode is big-endian; if the X server is little-endian, we can't // use SHM because that doesn't allow changing the image byte order - bool need_msb_image = (depth == 1 && XImageByteOrder(x_display) == LSBFirst); + bool need_msb_image = (/*depth == 1 && */XImageByteOrder(x_display) == LSBFirst); // Try to create and attach SHM image have_shm = false;