From 390413c09d3c6bb30d4a0668fde9f7a63012d5f1 Mon Sep 17 00:00:00 2001 From: oxmox Date: Wed, 22 Feb 2023 21:13:18 +0100 Subject: [PATCH] yes, it's buggy --- src/dp_doom/linuxdoom-1.10/ib_video/ib_video_nng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dp_doom/linuxdoom-1.10/ib_video/ib_video_nng.c b/src/dp_doom/linuxdoom-1.10/ib_video/ib_video_nng.c index 73394e3..892fc55 100644 --- a/src/dp_doom/linuxdoom-1.10/ib_video/ib_video_nng.c +++ b/src/dp_doom/linuxdoom-1.10/ib_video/ib_video_nng.c @@ -287,7 +287,7 @@ void IB_FinishUpdate (void) void IB_GetColor(unsigned char *bytes, unsigned char red, unsigned char green, unsigned char blue) { #if DoomBytesPerPixel == 3 -// FIXME: might be buggy +// FIXME: this is buggy bytes[0] = red; bytes[1] = green; bytes[2] = blue;