summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/inputprocessor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputprocessor.cc b/src/inputprocessor.cc
index 4344144..84e4076 100644
--- a/src/inputprocessor.cc
+++ b/src/inputprocessor.cc
@@ -46,13 +46,13 @@ bool InputProcessor::process(const std::vector<event_t>& events, size_t pos, dou
{
if(event.type == TYPE_ONSET)
{
- if(!process_onset(event, pos, resample_ratio))
+ if(!processOnset(event, pos, resample_ratio))
{
continue;
}
}
- if(!process_stop(event))
+ if(!processStop(event))
{
return false;
}