From c2ab86d4baaca9776965fbdee1bbf105899baebb Mon Sep 17 00:00:00 2001 From: joevt Date: Mon, 26 Feb 2024 12:57:14 -0800 Subject: [PATCH] atirage: Do something for hw cursor invert pixels. Try a 50% alpha blend with black. --- devices/video/atirage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/devices/video/atirage.cpp b/devices/video/atirage.cpp index 0f1c295..cf9b67a 100644 --- a/devices/video/atirage.cpp +++ b/devices/video/atirage.cpp @@ -639,6 +639,7 @@ void ATIRage::draw_hw_cursor(uint8_t *dst_buf, int dst_pitch) { WRITE_DWORD_BE_A(dst_row, 0); break; case 3: // 1's complement of display pixel + WRITE_DWORD_BE_A(dst_row, 0x0000007F); break; } }