informer_213.cpp: Fix clang error: explicitly assigning value of variable of type 'uint8_t' (aka 'unsigned char') to itself [-Werror,-Wself-assign]

This commit is contained in:
AJR 2020-09-24 12:38:32 -04:00
parent dfb72adb58
commit e674c7c51d

View File

@ -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)