diff options
Diffstat (limited to 'src/emu/digfx.h')
-rw-r--r-- | src/emu/digfx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/digfx.h b/src/emu/digfx.h index c663c0b9928..373bff7ba71 100644 --- a/src/emu/digfx.h +++ b/src/emu/digfx.h @@ -196,7 +196,7 @@ public: // static configuration static void static_set_info(device_t &device, const gfx_decode_entry *gfxinfo); - static void static_set_palette(device_t &device, std::string tag); + static void static_set_palette(device_t &device, const char *tag); // getters palette_device *palette() const { return m_palette; } @@ -220,7 +220,7 @@ protected: private: // configuration const gfx_decode_entry * m_gfxdecodeinfo; // pointer to array of gfx decode information - std::string m_palette_tag; // configured tag for palette device + const char * m_palette_tag; // configured tag for palette device bool m_palette_is_sibling; // is palette a sibling or a subdevice? // internal state |