summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/ef9340_1.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-08-20 10:37:21 +0200
committer hap <happppp@users.noreply.github.com>2020-08-20 10:37:36 +0200
commit8447afd133293172adfccf8422a58c4bcb88fbe2 (patch)
treeb3ee069816064a746c219d3b46e951ddc26b9fac /src/devices/video/ef9340_1.cpp
parent473dbb6c1e9f426a95aa713e93642745a486394b (diff)
odyssey2.xml: add file index for numbered videopac carts
Diffstat (limited to 'src/devices/video/ef9340_1.cpp')
-rw-r--r--src/devices/video/ef9340_1.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/video/ef9340_1.cpp b/src/devices/video/ef9340_1.cpp
index afaffddac1b..b9e595511fd 100644
--- a/src/devices/video/ef9340_1.cpp
+++ b/src/devices/video/ef9340_1.cpp
@@ -344,7 +344,6 @@ void ef9340_1_device::ef9340_scanline(int vpos)
uint16_t char_data = 0x00;
uint8_t fg = 0;
uint8_t bg = 0;
- bool del = false;
bool underline = false;
bool blank = false;
bool w_parity = false;
@@ -381,6 +380,7 @@ void ef9340_1_device::ef9340_scanline(int vpos)
bool cursor = m_ef9340.R & 0x10 && x == m_ef9340.X && y_row == m_ef9340.Y;
bool invert = cursor && !blink;
bool dw = false;
+ bool del = false;
if (a & 0x80)
{
@@ -477,8 +477,6 @@ void ef9340_1_device::ef9340_scanline(int vpos)
{
blank = m_ef9340.R & 0x04 && b & 0x01;
underline = bool(b & 0x04);
-
- del = false;
}
}
}