You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
524B

  1. diff -U 3 -H -b -d -r -N -- public.sdk.old/source/vst2.x/audioeffect.cpp public.sdk/source/vst2.x/audioeffect.cpp
  2. --- public.sdk.old/source/vst2.x/audioeffect.cpp 2013-09-21 02:26:56.320006646 +0100
  3. +++ public.sdk/source/vst2.x/audioeffect.cpp 2013-09-21 04:00:42.031675571 +0100
  4. @@ -509,7 +509,7 @@
  5. value -= digit * div;
  6. if (state || digit > 0)
  7. {
  8. - char temp[2] = {'0' + (char)digit, '\0'};
  9. + char temp[2] = {char('0' + (char)digit), '\0'};
  10. vst_strncat (text, temp, maxLen);
  11. state = true;
  12. }