summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-23 18:37:44 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-23 18:37:44 +0100
commita414d8ec4274c1251a6077db20e650ca915a83f2 (patch)
treefc0f1bc1fae0dc7efc023be62e94267eb15ad23b /src/devices/sound
parent098b43d5202905f3ea444b5e356b2b646537e351 (diff)
fix compile (nw)
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/scsp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/scsp.cpp b/src/devices/sound/scsp.cpp
index e082a68aca1..6dfacfa9a6b 100644
--- a/src/devices/sound/scsp.cpp
+++ b/src/devices/sound/scsp.cpp
@@ -518,7 +518,7 @@ void scsp_device::init()
memory_region* ram_region = memregion(tag());
// coolridr.c defines a region for the RAM, stv.c doesn't (uses set_ram_base instead, which seems to be more correct anyway?)
- if (ram_regon != NULL)
+ if (ram_region != NULL)
{
m_SCSPRAM = ram_region->base();
m_SCSPRAM_LENGTH = ram_region->bytes();