resVol isn't shared

This commit is contained in:
tildearrow 2022-12-12 17:18:13 -05:00
parent b903a4276e
commit e58fb42d52
3 changed files with 7 additions and 4 deletions

View file

@ -56,11 +56,10 @@ struct SharedChannelFreq: public SharedChannel {
// common shared channel volume struct
template<typename T>
struct SharedChannelVolume {
T vol, outVol, resVol;
T vol, outVol;
SharedChannelVolume(T initVol):
vol(initVol),
outVol(initVol),
resVol(initVol) {}
outVol(initVol) {}
};
#endif