diff options
author | 2013-12-01 12:39:54 +0000 | |
---|---|---|
committer | 2013-12-01 12:39:54 +0000 | |
commit | ca00a0eda3b55b5da7e060c99dbc024ce9aca735 (patch) | |
tree | 562d1349662f202c9240127bd8ce843cbe0ecaca /src/emu/sound/ymz770.h | |
parent | f481925325eb9bfe2a049482d2daf4583cda051f (diff) |
fix possible lockup
Diffstat (limited to 'src/emu/sound/ymz770.h')
-rw-r--r-- | src/emu/sound/ymz770.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/sound/ymz770.h b/src/emu/sound/ymz770.h index df94881c28a..41c07177583 100644 --- a/src/emu/sound/ymz770.h +++ b/src/emu/sound/ymz770.h @@ -48,6 +48,7 @@ class ymz770_device : public device_t, public device_sound_interface INT16 output_data[1152]; int output_remaining; int output_ptr; + int atbl; int pptr; UINT8 sequence; @@ -84,7 +85,7 @@ protected: UINT8 m_bsl; // boost level UINT8 m_cpl; // clip limiter UINT8 *m_rom_base; - int m_rom_size; + int m_rom_limit; ymz_channel m_channels[8]; }; |