summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-17 16:58:16 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-17 16:58:16 -0500
commitf6ad5b79e1eb7fea25a6e4dea0f81683d452d7c1 (patch)
tree176eb9c4be7674b8fdc146c3798d396aca5896c7
parent2ff4e3da445b849c642430b0f8da9e6c5f289189 (diff)
Better names for Video System sprite devices (nw)
-rw-r--r--src/mame/drivers/f1gp.cpp1
-rw-r--r--src/mame/video/vsystem_spr.cpp2
-rw-r--r--src/mame/video/vsystem_spr2.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/f1gp.cpp b/src/mame/drivers/f1gp.cpp
index 734024e7f78..ed900364a8e 100644
--- a/src/mame/drivers/f1gp.cpp
+++ b/src/mame/drivers/f1gp.cpp
@@ -525,6 +525,7 @@ MACHINE_CONFIG_START(f1gp_state::f1gp2)
MCFG_DEVICE_REMOVE("gga")
MCFG_DEVICE_REMOVE("vsystem_spr_old")
+ MCFG_DEVICE_REMOVE("vsystem_spr_ol2")
MCFG_DEVICE_ADD("vsystem_spr", VSYSTEM_SPR, 0)
MCFG_VSYSTEM_SPR_SET_TILE_INDIRECT( f1gp_state, f1gp2_tile_callback )
MCFG_VSYSTEM_SPR_SET_GFXREGION(1)
diff --git a/src/mame/video/vsystem_spr.cpp b/src/mame/video/vsystem_spr.cpp
index e271b648fb2..232787704a1 100644
--- a/src/mame/video/vsystem_spr.cpp
+++ b/src/mame/video/vsystem_spr.cpp
@@ -64,7 +64,7 @@ Abstracts the VS9210
#include "screen.h"
-DEFINE_DEVICE_TYPE(VSYSTEM_SPR, vsystem_spr_device, "vsystem_spr", "Video System Sprites")
+DEFINE_DEVICE_TYPE(VSYSTEM_SPR, vsystem_spr_device, "vsystem_spr", "Video System VS9108 Sprites")
vsystem_spr_device::vsystem_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, VSYSTEM_SPR, tag, owner, clock)
diff --git a/src/mame/video/vsystem_spr2.cpp b/src/mame/video/vsystem_spr2.cpp
index 2c907293d66..ad6dd167edc 100644
--- a/src/mame/video/vsystem_spr2.cpp
+++ b/src/mame/video/vsystem_spr2.cpp
@@ -27,7 +27,7 @@
#include "vsystem_spr2.h"
-DEFINE_DEVICE_TYPE(VSYSTEM_SPR2, vsystem_spr2_device, "vsystem2_spr", "Video System Sprites Type 2")
+DEFINE_DEVICE_TYPE(VSYSTEM_SPR2, vsystem_spr2_device, "vsystem2_spr", "Video System VS8904/VS8905 Sprites")
vsystem_spr2_device::vsystem_spr2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, VSYSTEM_SPR2, tag, owner, clock)