From e674c7c51d213fc59b1ea67b2bf838d372478486 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 24 Sep 2020 12:38:32 -0400 Subject: [PATCH] informer_213.cpp: Fix clang error: explicitly assigning value of variable of type 'uint8_t' (aka 'unsigned char') to itself [-Werror,-Wself-assign] --- src/mame/drivers/informer_213.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/informer_213.cpp b/src/mame/drivers/informer_213.cpp index 21394fb927c..c2a94e330e5 100644 --- a/src/mame/drivers/informer_213.cpp +++ b/src/mame/drivers/informer_213.cpp @@ -177,7 +177,7 @@ uint32_t informer_213_state::screen_update(screen_device &screen, bitmap_rgb32 & // underline (not supported by terminal?) if (line_attr & 0x20 || attr & 0x20) - data = data; + data = +data; // blink (todo: timing) if (line_attr & 0x40 || attr & 0x40)