summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2014-10-13 22:55:53 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2014-10-13 22:55:53 +0000
commit7ab90533ebca72670fe75807a49e5d87237d4eba (patch)
tree660c4f26c9dea32b6fd97db7776ad6c4d681aff4
parent02c4746e502f990663114acaa8edb56d7eacd542 (diff)
Compile fix (nw)
-rw-r--r--src/emu/video/upd7220.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/upd7220.c b/src/emu/video/upd7220.c
index 06d3b7b41ba..fd322499047 100644
--- a/src/emu/video/upd7220.c
+++ b/src/emu/video/upd7220.c
@@ -825,7 +825,7 @@ void upd7220_device::draw_line(int x, int y)
void upd7220_device::draw_arc(int x, int y)
{
- int len, xi = m_figs.m_d + 1, yi = 0, err = -m_figs.m_d;
+ int xi = m_figs.m_d + 1, yi = 0, err = -m_figs.m_d;
int x0, y0;
UINT16 pattern = (m_ra[8]) | (m_ra[9]<<8);
const int dot_dir[4] = {1, -1, -1, 1};