diff options
author | 2017-05-30 11:49:40 +1000 | |
---|---|---|
committer | 2017-05-30 11:49:40 +1000 | |
commit | a994ea3f294f83617d2d8cc606ed7c33731a1ded (patch) | |
tree | ed40609c95449711de45b6ccd0a8f07481818600 | |
parent | bfe8fee86d32c078c54b4e6ea82508967baad265 (diff) |
srcclean (nw)
-rw-r--r-- | src/mame/drivers/harddriv.cpp | 3 |
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; } /* |