summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gauntlet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gauntlet.c')
-rw-r--r--src/mame/video/gauntlet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/gauntlet.c b/src/mame/video/gauntlet.c
index 014c11699ed..89ba735c88b 100644
--- a/src/mame/video/gauntlet.c
+++ b/src/mame/video/gauntlet.c
@@ -82,8 +82,8 @@ const atari_motion_objects_config gauntlet_state::s_mob_config =
VIDEO_START_MEMBER(gauntlet_state,gauntlet)
{
/* modify the motion object code lookup table to account for the code XOR */
- dynamic_array<UINT16> &codelookup = m_mob->code_lookup();
- for (int i = 0; i < codelookup.count(); i++)
+ std::vector<UINT16> &codelookup = m_mob->code_lookup();
+ for (unsigned int i = 0; i < codelookup.size(); i++)
codelookup[i] ^= 0x800;
/* set up the base color for the playfield */