mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
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:
parent
dfb72adb58
commit
e674c7c51d
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user