summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/multfish.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-21 12:35:05 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-21 12:35:05 +0200
commitd2e8f6114903bd3f4841cec91bc77c1ca7e8dca4 (patch)
tree88327ab5fc2eda9fbd905f284584fe5879fbe0a1 /src/mame/drivers/multfish.cpp
parenta291e77b2cfc4ce1b780db0d8fa664fb8094d365 (diff)
dynamic_buffer is just std::vector<UINT8> (nw)
Diffstat (limited to 'src/mame/drivers/multfish.cpp')
-rw-r--r--src/mame/drivers/multfish.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/multfish.cpp b/src/mame/drivers/multfish.cpp
index 0cc66d4c57a..b913573702b 100644
--- a/src/mame/drivers/multfish.cpp
+++ b/src/mame/drivers/multfish.cpp
@@ -435,7 +435,7 @@ A12 <-> A13
UINT32 i,j,jscr,romoffset;
UINT8 *igrosoft_gamble_gfx = memregion("gfx")->base();
- dynamic_buffer temprom(igrosoft_gamble_ROM_SIZE);
+ std::vector<UINT8> temprom(igrosoft_gamble_ROM_SIZE);
/* ROM 1 decode */
@@ -506,7 +506,7 @@ static inline void rom_decodeh(UINT8 *romptr, UINT8 *tmprom, UINT8 xor_data, UIN
static void lottery_decode(running_machine &machine, UINT8 xor12, UINT8 xor34, UINT8 xor56, UINT8 xor78, UINT32 xor_addr)
{
UINT8 *igrosoft_gamble_gfx = machine.root_device().memregion("gfx")->base();
- dynamic_buffer temprom(igrosoft_gamble_ROM_SIZE);
+ std::vector<UINT8> temprom(igrosoft_gamble_ROM_SIZE);
/* ROMs decode */
rom_decodel(&igrosoft_gamble_gfx[0x000000], &temprom[0], xor12, xor_addr);
@@ -545,7 +545,7 @@ static inline void roment_decodeh(UINT8 *romptr, UINT8 *tmprom, UINT8 xor_data,
static void ent_decode(running_machine &machine, UINT8 xor12, UINT8 xor34, UINT8 xor56, UINT8 xor78, UINT32 xor_addr)
{
UINT8 *igrosoft_gamble_gfx = machine.root_device().memregion("gfx")->base();
- dynamic_buffer temprom(igrosoft_gamble_ROM_SIZE);
+ std::vector<UINT8> temprom(igrosoft_gamble_ROM_SIZE);
/* ROMs decode */
roment_decodel(&igrosoft_gamble_gfx[0x000000], &temprom[0], xor12, xor_addr);