summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-01-04 12:04:17 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-01-04 12:04:17 -0500
commit687e7e162dbadc4b4d0ca58343493f15a0cdabbc (patch)
tree98c74e83a9d353bdad6049fb46e48d2c538b217c
parent1df5faad19b61045bbddad62e23b1fa937a911de (diff)
Purge #include "rendlay.h" where not necessary
-rw-r--r--src/mame/drivers/alto2.cpp1
-rw-r--r--src/mame/drivers/barata.cpp1
-rw-r--r--src/mame/drivers/magnum.cpp1
-rw-r--r--src/mame/drivers/nbmj8688.cpp1
-rw-r--r--src/mame/drivers/pensebem.cpp1
-rw-r--r--src/mame/drivers/playch10.cpp1
-rw-r--r--src/mame/drivers/qix.cpp1
-rw-r--r--src/mame/drivers/tceptor.cpp1
-rw-r--r--src/mame/drivers/whitestar.cpp1
-rw-r--r--src/mame/includes/bw2.h1
-rw-r--r--src/mame/includes/kyocera.h1
-rw-r--r--src/mame/video/apollo.cpp1
-rw-r--r--src/mame/video/bfm_adr2.cpp1
-rw-r--r--src/mame/video/comx35.cpp1
-rw-r--r--src/mame/video/newbrain.cpp1
-rw-r--r--src/mame/video/pc8401a.cpp2
16 files changed, 1 insertions, 16 deletions
diff --git a/src/mame/drivers/alto2.cpp b/src/mame/drivers/alto2.cpp
index 0d870659808..ac25897f4eb 100644
--- a/src/mame/drivers/alto2.cpp
+++ b/src/mame/drivers/alto2.cpp
@@ -11,7 +11,6 @@
#include "sound/spkrdev.h"
#include "emupal.h"
#include "screen.h"
-#include "rendlay.h"
#include "speaker.h"
namespace {
diff --git a/src/mame/drivers/barata.cpp b/src/mame/drivers/barata.cpp
index ff3e1fd3a76..78e0e8a935f 100644
--- a/src/mame/drivers/barata.cpp
+++ b/src/mame/drivers/barata.cpp
@@ -36,7 +36,6 @@
#include "emu.h"
#include "cpu/mcs51/mcs51.h"
-#include "rendlay.h"
#include "speaker.h"
#include "barata.lh"
diff --git a/src/mame/drivers/magnum.cpp b/src/mame/drivers/magnum.cpp
index f5fb996b9ce..f6e17c87b27 100644
--- a/src/mame/drivers/magnum.cpp
+++ b/src/mame/drivers/magnum.cpp
@@ -14,7 +14,6 @@
#include "video/i8275.h"
#include "sound/beep.h"
#include "emupal.h"
-#include "rendlay.h"
#include "screen.h"
#include "speaker.h"
diff --git a/src/mame/drivers/nbmj8688.cpp b/src/mame/drivers/nbmj8688.cpp
index cb868b7562c..dda0bc7b032 100644
--- a/src/mame/drivers/nbmj8688.cpp
+++ b/src/mame/drivers/nbmj8688.cpp
@@ -38,7 +38,6 @@ TODO:
#include "sound/3812intf.h"
#include "sound/ay8910.h"
#include "sound/dac.h"
-#include "rendlay.h"
#include "screen.h"
#include "speaker.h"
diff --git a/src/mame/drivers/pensebem.cpp b/src/mame/drivers/pensebem.cpp
index 4b4378cddf8..0fd9bea03c9 100644
--- a/src/mame/drivers/pensebem.cpp
+++ b/src/mame/drivers/pensebem.cpp
@@ -107,7 +107,6 @@ Port B, bit 1
#include "cpu/avr8/avr8.h"
#include "video/pwm.h"
#include "sound/dac.h"
-#include "rendlay.h"
#include "screen.h"
#include "speaker.h"
diff --git a/src/mame/drivers/playch10.cpp b/src/mame/drivers/playch10.cpp
index 97dde797de2..4b8aaecb912 100644
--- a/src/mame/drivers/playch10.cpp
+++ b/src/mame/drivers/playch10.cpp
@@ -299,7 +299,6 @@ Notes & Todo:
#include "machine/rp5h01.h"
#include "machine/nvram.h"
-#include "rendlay.h"
#include "screen.h"
#include "speaker.h"
diff --git a/src/mame/drivers/qix.cpp b/src/mame/drivers/qix.cpp
index 3b9ddce892e..42ba6422858 100644
--- a/src/mame/drivers/qix.cpp
+++ b/src/mame/drivers/qix.cpp
@@ -232,7 +232,6 @@ Interrupts:
#include "emu.h"
#include "includes/qix.h"
-#include "rendlay.h"
#include "machine/nvram.h"
#include "elecyoyo.lh"
diff --git a/src/mame/drivers/tceptor.cpp b/src/mame/drivers/tceptor.cpp
index 17dc43f0ae6..5a99944a50b 100644
--- a/src/mame/drivers/tceptor.cpp
+++ b/src/mame/drivers/tceptor.cpp
@@ -18,7 +18,6 @@
#include "machine/nvram.h"
#include "sound/dac.h"
#include "sound/ym2151.h"
-#include "rendlay.h"
#include "speaker.h"
#include "tceptor2.lh"
diff --git a/src/mame/drivers/whitestar.cpp b/src/mame/drivers/whitestar.cpp
index 948093f1b8d..115147f4995 100644
--- a/src/mame/drivers/whitestar.cpp
+++ b/src/mame/drivers/whitestar.cpp
@@ -9,7 +9,6 @@
#include "video/mc6845.h"
#include "audio/decobsmt.h"
#include "video/decodmd2.h"
-#include "rendlay.h"
class whitestar_state : public driver_device
{
diff --git a/src/mame/includes/bw2.h b/src/mame/includes/bw2.h
index 7757af9689a..288e8218d3d 100644
--- a/src/mame/includes/bw2.h
+++ b/src/mame/includes/bw2.h
@@ -17,7 +17,6 @@
#include "machine/wd_fdc.h"
#include "video/msm6255.h"
#include "emupal.h"
-#include "rendlay.h"
#define Z80_TAG "ic1"
#define I8255A_TAG "ic4"
diff --git a/src/mame/includes/kyocera.h b/src/mame/includes/kyocera.h
index 5c03221cbf6..c8517c772cd 100644
--- a/src/mame/includes/kyocera.h
+++ b/src/mame/includes/kyocera.h
@@ -25,7 +25,6 @@
#include "bus/rs232/rs232.h"
#include "emupal.h"
-#include "rendlay.h"
#define SCREEN_TAG "screen"
diff --git a/src/mame/video/apollo.cpp b/src/mame/video/apollo.cpp
index a1b4c667fbf..26a762f5fc8 100644
--- a/src/mame/video/apollo.cpp
+++ b/src/mame/video/apollo.cpp
@@ -20,7 +20,6 @@
#include "includes/apollo.h"
#include "emupal.h"
-#include "rendlay.h"
#include "screen.h"
#include "apollo.lh"
diff --git a/src/mame/video/bfm_adr2.cpp b/src/mame/video/bfm_adr2.cpp
index a252d84503e..fbe1333bdff 100644
--- a/src/mame/video/bfm_adr2.cpp
+++ b/src/mame/video/bfm_adr2.cpp
@@ -98,7 +98,6 @@ E000-FFFF | R | D D D D D D D D | 8K ROM
#include "cpu/m6809/m6809.h"
#include "machine/bfm_bd1.h" // vfd
#include "emupal.h"
-#include "rendlay.h"
#include "screen.h"
#ifdef MAME_DEBUG
diff --git a/src/mame/video/comx35.cpp b/src/mame/video/comx35.cpp
index 80183877f8a..05b4a3ba88d 100644
--- a/src/mame/video/comx35.cpp
+++ b/src/mame/video/comx35.cpp
@@ -7,7 +7,6 @@
#include "sound/cdp1869.h"
#include "sound/wave.h"
#include "video/mc6845.h"
-#include "rendlay.h"
#include "screen.h"
#include "speaker.h"
diff --git a/src/mame/video/newbrain.cpp b/src/mame/video/newbrain.cpp
index 56e7c072b17..93d970ba87d 100644
--- a/src/mame/video/newbrain.cpp
+++ b/src/mame/video/newbrain.cpp
@@ -10,7 +10,6 @@
#include "emu.h"
#include "includes/newbrain.h"
-#include "rendlay.h"
#include "screen.h"
#define VERBOSE 0
diff --git a/src/mame/video/pc8401a.cpp b/src/mame/video/pc8401a.cpp
index c851f937bc8..66b1c4d7c23 100644
--- a/src/mame/video/pc8401a.cpp
+++ b/src/mame/video/pc8401a.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Curt Coder
#include "emu.h"
#include "includes/pc8401a.h"
-#include "rendlay.h"
+
#include "pc8500.lh"
/* PC-8401A */