From 75104ffd0627a40eb45f1828ddbb68f1936dd899 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 4 Dec 2025 17:55:47 +0200 Subject: [PATCH] Fix avioutput before filtering swapped color components. --- od-win32/avioutput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/od-win32/avioutput.cpp b/od-win32/avioutput.cpp index 3f2e590f..3434ef56 100644 --- a/od-win32/avioutput.cpp +++ b/od-win32/avioutput.cpp @@ -1196,9 +1196,9 @@ static int getFromBuffer(struct avientry *ae, int original) d += 4; } else if (avioutput_bits == 24) { uae_u32 v = ((uae_u32*)s)[x]; + *d++ = v >> 0; *d++ = v >> 8; *d++ = v >> 16; - *d++ = v >> 0; } } src += spitch; -- 2.47.3