We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e1e995 commit c220566Copy full SHA for c220566
src/kit_state.cpp
@@ -138,6 +138,9 @@ const std::vector<std::unique_ptr<PercussionState>>& KitState::percussions() con
138
auto state = std::make_unique<PercussionState>();
139
if (!state->loadObject(obj))
140
return false;
141
+#ifdef GEONKICK_SINGLE
142
+ state->setId(0);
143
+#endif // GEONKICK_SINGLE
144
addPercussion(std::move(state));
145
return true;
146
}
0 commit comments