diff options
| author | oy <Tom_Adams@web.de> | 2011-12-04 14:34:27 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-12-04 14:39:47 +0100 |
| commit | 9a03989e84c8d2719801889738c6af68864aba10 (patch) | |
| tree | c63debba2e7d849d615f0d5db9f1f8f4a816838d /src/game/editor/editor.h | |
| parent | b2a825652d8588dfb7f1c793403ca05555b1d75f (diff) | |
| download | zcatch-9a03989e84c8d2719801889738c6af68864aba10.tar.gz zcatch-9a03989e84c8d2719801889738c6af68864aba10.zip | |
added "Make an option for each envelope: (a) synchronized (b) starting at join" by Choupom
Diffstat (limited to 'src/game/editor/editor.h')
| -rw-r--r-- | src/game/editor/editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/editor/editor.h b/src/game/editor/editor.h index 1f09b0bc..f5d43dae 100644 --- a/src/game/editor/editor.h +++ b/src/game/editor/editor.h @@ -51,6 +51,7 @@ public: array<CEnvPoint> m_lPoints; char m_aName[32]; float m_Bottom, m_Top; + bool m_Synchronized; CEnvelope(int Chan) { @@ -58,6 +59,7 @@ public: m_aName[0] = 0; m_Bottom = 0; m_Top = 0; + m_Synchronized = true; } void Resort() |