From ab586a5a09c786e3ca8136d6706ef77749db8cc0 Mon Sep 17 00:00:00 2001 From: kanjitalk755 Date: Wed, 30 Jun 2021 22:00:59 +0900 Subject: [PATCH] SS, x86_64: fix thousands colors mode --- BasiliskII/src/CrossPlatform/video_blit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/CrossPlatform/video_blit.cpp b/BasiliskII/src/CrossPlatform/video_blit.cpp index 2d7e534d..a03aec46 100755 --- a/BasiliskII/src/CrossPlatform/video_blit.cpp +++ b/BasiliskII/src/CrossPlatform/video_blit.cpp @@ -529,7 +529,7 @@ bool Screen_blitter_init(VisualFormat const & visual_format, bool native_byte_or // Windowed 1-bit mode uses a 1-bit X image, so there's no need for special blitting routines Screen_blit = Blit_Copy_Raw; -#if !DIRECT_ADDRESSING +#if !DIRECT_ADDRESSING && defined(__aarch64__) } else if (mac_depth == 16) { Screen_blit = Blit_Copy_Raw;