gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 3599930aedbecae7d202e8976f41c30884af0a0b
parent 5e9f179e6102beaeb1cdce5c98507d02abe0db48
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed, 23 Mar 2022 21:44:37 +0100

fix warning

Diffstat:
Msource/virusLib/demoplayback.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/virusLib/demoplayback.cpp b/source/virusLib/demoplayback.cpp @@ -82,7 +82,7 @@ namespace virusLib { if(_data[j] == 0xf7) { - e = parseSysex(&_data[i], j - i + 1); + e = parseSysex(&_data[i], static_cast<uint32_t>(j - i + 1)); i = j+1; break; }