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 f95077026497c0208d43f7667c84ff7ecf278fab
parent f0775afa1a50af567b3b04e02c774ef99728730c
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 21 Jul 2024 02:24:16 +0200

add support for dot character

Diffstat:
Msource/nord/n2x/n2xLib/n2xfrontpanel.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xfrontpanel.cpp b/source/nord/n2x/n2xLib/n2xfrontpanel.cpp @@ -134,6 +134,8 @@ namespace n2x off += 6; } + buf[4][4] = (m_lcds[0] & (1<<0)) ? '*' : ' '; + char message[(sizeof(Line) + 1) * buf.size() + 1]; size_t i=0; for (const auto& line : buf)