this is a quick question. I am building a program in C++ and have this weird problem when it comes to print some data in the output window. I don't get any data in the output window but when I set a breakpoint I can see that data is in the variable that I am trying to print. So I am going a bit loco here.
This is the line I use to print my data:
std::cout << midiNoteNumber << std::endl;
Why does nothing appear in the debugging output window?