summaryrefslogtreecommitdiffstats
path: root/src/emu/digfx.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-11 16:31:18 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-11 16:31:18 +0100
commitd1dc775f9b686170416fbca6a615fbea108d0ff1 (patch)
tree64c9053aa0ac1c0d9b15a5d628d5a2ca8e296db8 /src/emu/digfx.cpp
parent7c7e62455e91e9eae51577cd06c4fd38858a3d50 (diff)
Some cleanups and init fixes with help of ReSharper C++ (nw)
Diffstat (limited to 'src/emu/digfx.cpp')
-rw-r--r--src/emu/digfx.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/digfx.cpp b/src/emu/digfx.cpp
index 47d9646eb67..933dd5a72c5 100644
--- a/src/emu/digfx.cpp
+++ b/src/emu/digfx.cpp
@@ -22,7 +22,8 @@
device_gfx_interface::device_gfx_interface(const machine_config &mconfig, device_t &device,
const gfx_decode_entry *gfxinfo, const char *palette_tag)
- : device_interface(device, "gfx"),
+ : device_interface(device, "gfx"),
+ m_palette(NULL),
m_gfxdecodeinfo(gfxinfo),
m_palette_tag(palette_tag),
m_palette_is_sibling(palette_tag == NULL),