diff options
author | 2020-08-20 10:37:21 +0200 | |
---|---|---|
committer | 2020-08-20 10:37:36 +0200 | |
commit | 8447afd133293172adfccf8422a58c4bcb88fbe2 (patch) | |
tree | b3ee069816064a746c219d3b46e951ddc26b9fac /src | |
parent | 473dbb6c1e9f426a95aa713e93642745a486394b (diff) |
odyssey2.xml: add file index for numbered videopac carts
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/video/ef9340_1.cpp | 4 | ||||
-rw-r--r-- | src/mame/machine/model1io2.cpp | 2 |
2 files changed, 2 insertions, 4 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; } } } diff --git a/src/mame/machine/model1io2.cpp b/src/mame/machine/model1io2.cpp index 472f0433263..f47a5b3bda2 100644 --- a/src/mame/machine/model1io2.cpp +++ b/src/mame/machine/model1io2.cpp @@ -386,7 +386,7 @@ ioport_value model1io2_device::analog3_r() //************************************************************************** -// FGPA (Virtua Cop) +// FPGA (Virtua Cop) //************************************************************************** uint8_t model1io2_device::fpga_r(offs_t offset) |