From 24b663714eea3a8746eaede8692900920b0e6580 Mon Sep 17 00:00:00 2001 From: mahlemiut Date: Fri, 9 Mar 2012 06:39:58 +0000 Subject: [PATCH] Fix GCC 4.4.3 compile (no whatsnew) --- src/emu/video/bufsprite.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/emu/video/bufsprite.h b/src/emu/video/bufsprite.h index 0fc174f4f04..70efca6bda0 100644 --- a/src/emu/video/bufsprite.h +++ b/src/emu/video/bufsprite.h @@ -136,7 +136,7 @@ class buffered_spriteram8_device : public buffered_spriteram_device public: // construction buffered_spriteram8_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM8, tag, owner, clock) { } + : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM8, tag, owner, clock) { } }; @@ -147,7 +147,7 @@ class buffered_spriteram16_device : public buffered_spriteram_device public: // construction buffered_spriteram16_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM16, tag, owner, clock) { } + : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM16, tag, owner, clock) { } }; @@ -158,7 +158,7 @@ class buffered_spriteram32_device : public buffered_spriteram_device public: // construction buffered_spriteram32_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM32, tag, owner, clock) { } + : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM32, tag, owner, clock) { } }; @@ -169,7 +169,7 @@ class buffered_spriteram64_device : public buffered_spriteram_device public: // construction buffered_spriteram64_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM64, tag, owner, clock) { } + : buffered_spriteram_device(mconfig, BUFFERED_SPRITERAM64, tag, owner, clock) { } };