diff options
author | 2017-07-20 00:39:30 -0400 | |
---|---|---|
committer | 2017-07-20 00:43:39 -0400 | |
commit | 8c4d9e4dfe189f369d14feb203fc41a678e27c98 (patch) | |
tree | 791aa1618741a2439c6327ce9df7546cdad73066 /src/devices/imagedev/bitbngr.cpp | |
parent | e5f6ac04d8ca1a1d3a3af5c6252a8e1ff0379b31 (diff) |
vgmplay: Bug fixes
- Fix clock speed for dual POKEY (MT #6631)
- Produce error message when nonexistent file specified rather than create a spurious empty file and segfault trying to read it
Diffstat (limited to 'src/devices/imagedev/bitbngr.cpp')
-rw-r--r-- | src/devices/imagedev/bitbngr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/imagedev/bitbngr.cpp b/src/devices/imagedev/bitbngr.cpp index 5031e0acdd3..2a18395ad75 100644 --- a/src/devices/imagedev/bitbngr.cpp +++ b/src/devices/imagedev/bitbngr.cpp @@ -24,7 +24,8 @@ DEFINE_DEVICE_TYPE(BITBANGER, bitbanger_device, "bitbanger", "Bitbanger") bitbanger_device::bitbanger_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, BITBANGER, tag, owner, clock), device_image_interface(mconfig, *this), - m_interface(nullptr) + m_interface(nullptr), + m_is_readonly(false) { } |