diff options
author | 2018-10-29 17:09:14 +1100 | |
---|---|---|
committer | 2018-10-29 17:09:14 +1100 | |
commit | fc726060143d454c838fba9c82ce830c63a008c0 (patch) | |
tree | 4eb117467c914e26009b32de536e5b656fd13701 | |
parent | d5187a3a6f221f582927c381c7d7359a61c8f4d4 (diff) |
_NAMES are reserved - let's not add them back in on refactoring (nw)
-rw-r--r-- | src/mame/video/namco_c355spr.cpp | 4 | ||||
-rw-r--r-- | src/mame/video/namco_c355spr.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/namco_c355spr.cpp b/src/mame/video/namco_c355spr.cpp index f93c5c4c1fc..053a9f44561 100644 --- a/src/mame/video/namco_c355spr.cpp +++ b/src/mame/video/namco_c355spr.cpp @@ -439,8 +439,8 @@ void namco_c355spr_device::get_sprites() get_list(1, &m_spriteram[buffer][0x14000/2], &m_spriteram[buffer][0x10000/2]); } -template<class _BitmapClass> -void namco_c355spr_device::draw_sprites(screen_device &screen, _BitmapClass &bitmap, const rectangle &cliprect, int pri) +template<class BitmapClass> +void namco_c355spr_device::draw_sprites(screen_device &screen, BitmapClass &bitmap, const rectangle &cliprect, int pri) { // int offs = spriteram16[0x18000/2]; /* end-of-sprite-list */ if (pri == 0) diff --git a/src/mame/video/namco_c355spr.h b/src/mame/video/namco_c355spr.h index 5d53120488e..5e26345b942 100644 --- a/src/mame/video/namco_c355spr.h +++ b/src/mame/video/namco_c355spr.h @@ -72,7 +72,7 @@ private: void get_single_sprite(const uint16_t *pSource, struct c355_sprite *sprite_ptr); void get_list(int no, const uint16_t *pSpriteList16, const uint16_t *pSpriteTable); void get_sprites(); - template<class _BitmapClass> void draw_sprites(screen_device &screen, _BitmapClass &bitmap, const rectangle &cliprect, int pri); + template<class BitmapClass> void draw_sprites(screen_device &screen, BitmapClass &bitmap, const rectangle &cliprect, int pri); struct c355_sprite *m_spritelist[2]; const struct c355_sprite *m_sprite_end[2]; @@ -94,4 +94,3 @@ private: DECLARE_DEVICE_TYPE(NAMCO_C355SPR, namco_c355spr_device) #endif // MAME_VIDEO_NAMCO_C355SPR_H - |