You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I imported the code in Polyphone but when I build it with MSVC:
"char buffer[i];" is not allowed (you can use new char[i] and delete [] instead). This appears at 2 positions in the code.
The line "char buffer[1024*1024];" can be compiled but this crashed the software. Using new char[1048576] and delete [] solved the problem.
The text was updated successfully, but these errors were encountered:
Integration improvement (fixmusescore#11):
* preprocessor variable to loose the xml and libsnd dependencies
* namespace SfTools
* smallSf now a class variable
* C++11 not needed anymore (struct initialization)
* dynamic declaration of array now ok with visual C++ (fixmusescore#10)
* warning and unused variables removed
Bug fix:
* sample links now kept in the soundfont (fixmusescore#9)
Hi,
I imported the code in Polyphone but when I build it with MSVC:
"char buffer[i];" is not allowed (you can use new char[i] and delete [] instead). This appears at 2 positions in the code.
The line "char buffer[1024*1024];" can be compiled but this crashed the software. Using new char[1048576] and delete [] solved the problem.
The text was updated successfully, but these errors were encountered: