From 828294de32bff872c23fcf750068e6d63ebbcc49 Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Mon, 3 Dec 2018 13:27:10 -0500 Subject: fix compile on gcc 8.2.0 64-bit win (nw) --- src/mame/drivers/hp95lx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/drivers/hp95lx.cpp b/src/mame/drivers/hp95lx.cpp index 5a9bf6ac2b5..c160b251167 100644 --- a/src/mame/drivers/hp95lx.cpp +++ b/src/mame/drivers/hp95lx.cpp @@ -416,6 +416,7 @@ WRITE8_MEMBER(hp95lx_state::f300_w) { address_map_bank_device *mapper; const char *mapname; + mapper = m_bankdev_e000; // appease GCC 'may be used uninitialized' LOG("%s: IO %04x <- %02x\n", machine().describe_context(), 0xf300 + offset, data); -- cgit v1.2.3