diff options
Diffstat (limited to 'src/emu/drawgfx.h')
-rw-r--r-- | src/emu/drawgfx.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/emu/drawgfx.h b/src/emu/drawgfx.h index 164e452b193..d28024bb442 100644 --- a/src/emu/drawgfx.h +++ b/src/emu/drawgfx.h @@ -5,6 +5,7 @@ drawgfx.h Generic graphic functions. + ********************************************************************** How to use priority-masked drawing (formerly pdrawgfx): @@ -537,8 +538,8 @@ class gfxdecode_device : public device_t, public device_gfx_interface public: // construction/destruction template <typename T> - gfxdecode_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&palette_tag, const gfx_decode_entry *gfxinfo) - : gfxdecode_device(mconfig, tag, owner, 0) + gfxdecode_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&palette_tag, const gfx_decode_entry *gfxinfo) : + gfxdecode_device(mconfig, tag, owner, 0) { set_palette(std::forward<T>(palette_tag)); set_info(gfxinfo); @@ -546,7 +547,7 @@ public: gfxdecode_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0); protected: - virtual void device_start() override {} + virtual void device_start() override { } }; #endif // MAME_EMU_DRAWGFX_H |