summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tp84.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-04-24 06:15:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-04-24 06:15:00 +0000
commit6a955fc076b56752bd5922df082bc05a98ca1bac (patch)
tree7f02ad03fbba115a5076589c110c745f264a40f5 /src/mame/drivers/tp84.c
parent737ff539301408ff336f32fbb653ede921d595ac (diff)
From: Atari Ace [mailto:atari_ace@verizon.net]
Subject: [patch] Remove more Machine globals, #include "deprecat.h" Hi mamedev, The attached patch goes through and converts a number of Machine globals to machine locals, and then removes #include "deprecat.h" if appropriate. The script that generated it is included, since the patch itself is rather large and would have been time consuming to produce otherwise. The script doesn't convert cases of Machine that aren't in common macros. I'll try to tackle those later if someone doesn't beat me to it. ~aa
Diffstat (limited to 'src/mame/drivers/tp84.c')
-rw-r--r--src/mame/drivers/tp84.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/tp84.c b/src/mame/drivers/tp84.c
index 5f8131eaf5a..b8fc4ae0421 100644
--- a/src/mame/drivers/tp84.c
+++ b/src/mame/drivers/tp84.c
@@ -65,7 +65,6 @@ C004 76489 #4 trigger
***************************************************************************/
#include "driver.h"
-#include "deprecat.h"
#include "sound/sn76496.h"
#include "sound/flt_rc.h"
@@ -129,7 +128,7 @@ static WRITE8_HANDLER( tp84_filter_w )
static WRITE8_HANDLER( tp84_sh_irqtrigger_w )
{
- cpunum_set_input_line_and_vector(Machine, 2,0,HOLD_LINE,0xff);
+ cpunum_set_input_line_and_vector(machine, 2,0,HOLD_LINE,0xff);
}