summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/digfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/digfx.cpp')
-rw-r--r--src/emu/digfx.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/emu/digfx.cpp b/src/emu/digfx.cpp
index 3dfb1a29458..3f6ed1b4804 100644
--- a/src/emu/digfx.cpp
+++ b/src/emu/digfx.cpp
@@ -42,37 +42,6 @@ device_gfx_interface::~device_gfx_interface()
//-------------------------------------------------
-// static_set_info: configuration helper to set
-// the gfxdecode info used by the device
-//-------------------------------------------------
-
-void device_gfx_interface::static_set_info(device_t &device, const gfx_decode_entry *gfxinfo)
-{
- device_gfx_interface *gfx;
- if (!device.interface(gfx))
- throw emu_fatalerror("MCFG_GFX_INFO called on device '%s' with no gfx interface\n", device.tag());
-
- gfx->m_gfxdecodeinfo = gfxinfo;
-}
-
-
-//-------------------------------------------------
-// static_set_palette: configuration helper to
-// set the palette used by the device
-//-------------------------------------------------
-
-void device_gfx_interface::static_set_palette(device_t &device, const char *tag)
-{
- device_gfx_interface *gfx;
- if (!device.interface(gfx))
- throw emu_fatalerror("MCFG_GFX_PALETTE called on device '%s' with no gfx interface\n", device.tag());
-
- gfx->m_palette_tag = tag;
- gfx->m_palette_is_sibling = true;
-}
-
-
-//-------------------------------------------------
// set_palette_disable: configuration helper to
// disable the use of a palette by the device
//-------------------------------------------------