Hi,
I'm pretty sure I found 2 bugs:
printf calls seem to only print the final line of a buffer.
std::cout seems to completely skip new line characters.
For example, the following code:
const char content[] = "first line\nsecond line\nthird line\n";
const char finalLine[] = "final line\n";
printf(content);
printf(finalLine);
outputs
The first 2 lines of the content buffer are never printed.
And the following code:
const char content[] = "first line\nsecond line\nthird line\n";
const char finalLine[] = "final line\n";
std::cout << content;
std::cout << finalLine;
outputs
first linesecond linethird linefinal line
The first 2 lines are printed but the new line characters themselves are not.
I tested both the WinForms and ImGui versions and the bugs seem to happen in both.
PS: Thank you so much for this project! I only have an RGH and until recently I was stuck using Xbox Watson, having a debugger that doesn't crash when the console does has been a life saver!
Hi,
I'm pretty sure I found 2 bugs:
printfcalls seem to only print the final line of a buffer.std::coutseems to completely skip new line characters.For example, the following code:
outputs
The first 2 lines of the
contentbuffer are never printed.And the following code:
outputs
The first 2 lines are printed but the new line characters themselves are not.
I tested both the WinForms and ImGui versions and the bugs seem to happen in both.
PS: Thank you so much for this project! I only have an RGH and until recently I was stuck using Xbox Watson, having a debugger that doesn't crash when the console does has been a life saver!