09-14-2022, 04:40 PM
(This post was last modified: 09-14-2022, 04:50 PM by mnrvovrfc.
Edit Reason: Clarification
)
(09-14-2022, 04:06 PM)Spriggsy Wrote: Just thought I'd add this.... You don't need _DEST _CONSOLE or _SOURCE _CONSOLE in $CONSOLE:ONLY since those are both automatically set when using $CONSOLE:ONLY. I made this change to the code maybe a year ago.Still, the example @Jack is displaying is a bug which is embarrassing. This printing error could rear its ugly face somewhere else. Some people are dedicated to breaking stuff and to doing bizarre things only to report a bug. Such as the Linux distro-hoppers because they would never give up MacOS or Windows.
This is interesting, from the long and complicated "qbs_input()" within "libqb.cpp":
Code: (Select All)
if (write_page->console) {
qbs_set(key, qbs_new_txt(""));
chr = fgetc(stdin);
if (chr != EOF) {
if (chr == '\n')
chr = 13;
qbs_set(key, qbs_new_txt(" "));
key->chr[0] = chr;
} else {
Sleep(10);
}
} else {
Sleep(10);
qbs_set(key, qbs_inkey());
}