From 4fe8863a1176f7fe4057d82b2844dd7127b13bca Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 16 Mar 2005 04:59:36 +0000 Subject: much cleaner Window GUI code fixed bug with param method updated build system minimal feedback attribute for parameter reporting clean handling of plugin deletion (potentially open editor window etc.) updated for new flext function naming names containing spaces are now correctly dumped added event processing (like Midi in) more consistent MIDI functionality trying to catch crashing plugins svn path=/trunk/; revision=2630 --- externals/grill/vst/src/vstparam.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'externals/grill/vst/src/vstparam.cpp') diff --git a/externals/grill/vst/src/vstparam.cpp b/externals/grill/vst/src/vstparam.cpp index 30515b23..bb80263e 100644 --- a/externals/grill/vst/src/vstparam.cpp +++ b/externals/grill/vst/src/vstparam.cpp @@ -16,6 +16,7 @@ static void striptrail(char *txt) for(int i = strlen(txt)-1; i >= 0; --i) // cast to unsigned char since isspace functions don't want characters like 0x80 = -128 if(isspace(((unsigned char *)txt)[i])) txt[i] = 0; + else break; } void VSTPlugin::GetParamName(int numparam,char *name) const -- cgit v1.2.1