From 92b01eecb25edf98d38316e37e77f53c806f0320 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Mon, 9 Nov 2020 08:22:01 +0100 Subject: [PATCH] Fix the hashing function for OSC dispatch --- src/sfizz/SynthMessaging.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/SynthMessaging.cpp b/src/sfizz/SynthMessaging.cpp index ed5c2bae..aaeb56fd 100644 --- a/src/sfizz/SynthMessaging.cpp +++ b/src/sfizz/SynthMessaging.cpp @@ -72,7 +72,7 @@ static uint64_t hashMessagePath(const char* path, const char* sig) ++path; } } - h = hashByte(','); + h = hashByte(',', h); while (unsigned char c = *sig++) h = hashByte(c, h); return h;