summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-09-24 12:38:32 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-09-24 12:39:11 -0400
commite674c7c51d213fc59b1ea67b2bf838d372478486 (patch)
tree6df160e8d618eb54de18c91e7796d99a09ebb785
parentdfb72adb585828375a1f5ea64341276e0df3a364 (diff)
informer_213.cpp: Fix clang error: explicitly assigning value of variable of type 'uint8_t' (aka 'unsigned char') to itself [-Werror,-Wself-assign]
-rw-r--r--src/mame/drivers/informer_213.cpp2
1 files changed, 1 insertions, 1 deletions
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)