summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robert <Robbbert@users.noreply.github.com>2014-10-25 12:23:12 +1100
committer Robert <Robbbert@users.noreply.github.com>2014-10-25 12:23:12 +1100
commit0fcd9bf7028a4da98674e65c4b61405285be5fca (patch)
treed99908cb828f4f1e7e3278447941247c18e35c3f
parentd635c1a7ccacb323710fa23b8bc2c7780966b2ba (diff)
Added licence info to some pinball drivers (nw)
-rw-r--r--src/mame/drivers/gts3.c2
-rw-r--r--src/mame/drivers/gts3a.c2
-rw-r--r--src/mame/drivers/gts80.c2
-rw-r--r--src/mame/drivers/gts80a.c2
-rw-r--r--src/mame/drivers/gts80b.c2
-rw-r--r--src/mame/drivers/inder.c2
-rw-r--r--src/mame/drivers/spinb.c4
7 files changed, 15 insertions, 1 deletions
diff --git a/src/mame/drivers/gts3.c b/src/mame/drivers/gts3.c
index bd38112c7ba..d796e5edf23 100644
--- a/src/mame/drivers/gts3.c
+++ b/src/mame/drivers/gts3.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/****************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/gts3a.c b/src/mame/drivers/gts3a.c
index 4b7bc7d23dc..ecb96111b2b 100644
--- a/src/mame/drivers/gts3a.c
+++ b/src/mame/drivers/gts3a.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/****************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/gts80.c b/src/mame/drivers/gts80.c
index d5c5b7e4c71..13c9518798e 100644
--- a/src/mame/drivers/gts80.c
+++ b/src/mame/drivers/gts80.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/***********************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/gts80a.c b/src/mame/drivers/gts80a.c
index 7bf6cc3304d..6d10197e621 100644
--- a/src/mame/drivers/gts80a.c
+++ b/src/mame/drivers/gts80a.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/****************************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/gts80b.c b/src/mame/drivers/gts80b.c
index 12c553ed082..d29f5b8bcb2 100644
--- a/src/mame/drivers/gts80b.c
+++ b/src/mame/drivers/gts80b.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/****************************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/inder.c b/src/mame/drivers/inder.c
index 0a6ddf88c65..281511eab45 100644
--- a/src/mame/drivers/inder.c
+++ b/src/mame/drivers/inder.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/*******************************************************************************************************
PINBALL
diff --git a/src/mame/drivers/spinb.c b/src/mame/drivers/spinb.c
index d2e1bd26032..9ca53f43b14 100644
--- a/src/mame/drivers/spinb.c
+++ b/src/mame/drivers/spinb.c
@@ -1,3 +1,5 @@
+// license:MAME
+// copyright-holders:Robbbert
/***************************************************************************************************
PINBALL
@@ -572,13 +574,13 @@ UINT32 spinb_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, c
if (m_game)
{
ma = ((ma - 0x200) & 0x1c00) + 0x200;
+ if (ma > 0x1c00) return 1; // not initialised yet
for(y=0; y<32; y++)
{
UINT16 *p = &bitmap.pix16(sy++);
for(x = 0; x < 16; x++)
{
- assert((ma + 0x200) > 0 && (ma + 0x200) < ARRAY_LENGTH(m_dmdram));
gfx = m_dmdram[ma+0x200];
gfx1 = m_dmdram[ma++];