summaryrefslogtreecommitdiff
path: root/src/drumgizmo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drumgizmo.h')
-rw-r--r--src/drumgizmo.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/drumgizmo.h b/src/drumgizmo.h
index b104772..e74d1b5 100644
--- a/src/drumgizmo.h
+++ b/src/drumgizmo.h
@@ -92,14 +92,15 @@ protected:
std::map<std::string, AudioFile *> audiofiles;
- AudioCache audioCache;
+ AudioCache audio_cache;
DrumKit kit;
InputProcessor input_processor;
- size_t framesize;
- bool freewheel;
+ size_t framesize{0};
+ bool freewheel{true};
std::vector<event_t> events;
Settings& settings;
+
Random rand;
};