diff options
author | 2011-08-14 07:20:37 +0000 | |
---|---|---|
committer | 2011-08-14 07:20:37 +0000 | |
commit | 1d67e2753936e34fdfa0dec0b72e4527e86070de (patch) | |
tree | dd330075a70ed9cbbfb9b330fc1173f07fbded39 /src/emu/disound.h | |
parent | b0e77ca0eed28841cf37018131934dfddab8dce2 (diff) |
Various memory leaks and unnecessary checks removed by Oliver Stoneberg (no whatsnew)
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 b5e8e4ad2eb..6eae08c3076 100644 --- a/src/emu/disound.h +++ b/src/emu/disound.h @@ -109,7 +109,7 @@ public: UINT32 m_output; // output index, or ALL_OUTPUTS UINT32 m_input; // target input index float m_gain; // gain - const char * m_target; // target tag + astring m_target; // target tag }; // construction/destruction |