summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/mame/drivers/harddriv.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp
index 1aa6f8da4b4..c1c7d6611ab 100644
--- a/src/mame/drivers/harddriv.cpp
+++ b/src/mame/drivers/harddriv.cpp
@@ -4701,7 +4701,8 @@ void harddriv_state::init_ds3()
/* predetermine memory regions, can't use a region_ptr because strtdriv expects uint8_t while hdrivair expects uint16_t, also need to check if region exists for steeltal*/
if (memregion("ds3sdsp_data") != nullptr)
- { m_ds3_sdata_memory = (uint16_t*)memregion("ds3sdsp_data")->base();
+ {
+ m_ds3_sdata_memory = (uint16_t *)memregion("ds3sdsp_data")->base();
m_ds3_sdata_memory_size = memregion("ds3sdsp_data")->bytes() / 2;
}
/*