aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/ActionFactory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/ActionFactory.hpp')
-rw-r--r--src/engine/ActionFactory.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/ActionFactory.hpp b/src/engine/ActionFactory.hpp
index c859aa7..db7aa68 100644
--- a/src/engine/ActionFactory.hpp
+++ b/src/engine/ActionFactory.hpp
@@ -25,8 +25,8 @@ struct Action;
namespace ActionFactory {
SPtr<Action> copy(SPtr<Action> copy);
-SPtr<Action> note_on(unsigned char note);
-SPtr<Action> note_off(unsigned char note);
+SPtr<Action> note_on(uint8_t note, uint8_t velocity=64);
+SPtr<Action> note_off(uint8_t note, uint8_t velocity=64);
}
} // namespace machina