summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrafr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/astrafr.c')
-rw-r--r--src/mame/drivers/astrafr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/astrafr.c b/src/mame/drivers/astrafr.c
index b6d6f532a76..ea7d0b81999 100644
--- a/src/mame/drivers/astrafr.c
+++ b/src/mame/drivers/astrafr.c
@@ -2090,7 +2090,7 @@ ROM_END
void astra_addresslines( UINT16* src, size_t srcsize, int small )
{
- dynamic_array<UINT16> dst(srcsize/2);
+ std::vector<UINT16> dst(srcsize/2);
int blocksize;
@@ -2106,7 +2106,7 @@ void astra_addresslines( UINT16* src, size_t srcsize, int small )
}
}
- memcpy(src,dst, srcsize);
+ memcpy(src,&dst[0], srcsize);
}