diff options
author | 2020-09-27 11:00:56 +1000 | |
---|---|---|
committer | 2020-09-27 11:00:56 +1000 | |
commit | 6e807013c570ed6b5ff7f950a3b131914b9718f3 (patch) | |
tree | 86eb67544d14d9ee32a18467d7ba859f19f36a51 /src/emu/disound.h | |
parent | 7dad0f4f58e2e0e59b72f3df672ecfe2c8168545 (diff) |
Disable SOUND_DEBUG for non-debug builds, and srcclean
Diffstat (limited to 'src/emu/disound.h')
-rw-r--r-- | src/emu/disound.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/disound.h b/src/emu/disound.h index d6135123ddb..db6456dfc9a 100644 --- a/src/emu/disound.h +++ b/src/emu/disound.h @@ -138,7 +138,7 @@ protected: // internal state u8 m_outputs; // number of outputs std::vector<u8> m_outputmap; // map of inputs to outputs - std::vector<bool> m_output_clear; // flag for tracking cleared buffers + std::vector<bool> m_output_clear; // flag for tracking cleared buffers sound_stream *m_mixer_stream; // mixing stream }; |