diff options
author | 2012-09-16 05:24:30 +0000 | |
---|---|---|
committer | 2012-09-16 05:24:30 +0000 | |
commit | 1a301849034da9956b893453acce8e0f9168e150 (patch) | |
tree | a39f7a6c6b4c54b7993e58cd22ea6b6bd25f37cf /src/emu/sound/disc_wav.h | |
parent | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (diff) |
Final round of struct/union/enum normalization.
Diffstat (limited to 'src/emu/sound/disc_wav.h')
-rw-r--r-- | src/emu/sound/disc_wav.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/disc_wav.h b/src/emu/sound/disc_wav.h index 2c711205a13..f0d37544ba6 100644 --- a/src/emu/sound/disc_wav.h +++ b/src/emu/sound/disc_wav.h @@ -103,7 +103,7 @@ class DISCRETE_CLASS_NAME(dss_inverter_osc): public discrete_base_node, public d DISCRETE_CLASS_CONSTRUCTOR(dss_inverter_osc, base) DISCRETE_CLASS_DESTRUCTOR(dss_inverter_osc) public: - typedef struct + struct description { double vB; double vOutLow; @@ -112,7 +112,7 @@ public: double vInRise; // voltage that triggers the gate input to go high (vGate) on rise double clamp; // voltage is clamped to -clamp ... vb+clamp if clamp>= 0; int options; // bitmaped options - } description; + }; enum { IS_TYPE1 = 0x00, IS_TYPE2 = 0x01, |