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 f03230058b6faa0ad32f863063fa2f9e3e6f5d44
parent 184ea0b1650ea98f590d173abb47c9b5506c2258
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed,  7 Aug 2024 12:51:34 +0200

add missing include

Diffstat:
Msource/mqLib/rom.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/mqLib/rom.cpp b/source/mqLib/rom.cpp @@ -1,5 +1,7 @@ #include "rom.h" +#include <cstring> + namespace mqLib { ROM::ROM(const std::string& _filename) : wLib::ROM(_filename, g_romSize)