mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
proper escape of dollar sign
This commit is contained in:
parent
e93368a9f0
commit
a65fd10267
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ Cd(__DIR__);;
|
||||||
#include "TelnetHelpers"
|
#include "TelnetHelpers"
|
||||||
|
|
||||||
// If you're using a custom palette, the colors might not seem right.
|
// If you're using a custom palette, the colors might not seem right.
|
||||||
// PaletteSet("Temple");
|
PaletteSet("Temple");
|
||||||
|
|
||||||
Bool force_disconnect = FALSE;
|
Bool force_disconnect = FALSE;
|
||||||
|
|
||||||
|
@ -116,14 +116,14 @@ U0 HandleControlCodes(U8 ch) {
|
||||||
SysLog("case 127");
|
SysLog("case 127");
|
||||||
}
|
}
|
||||||
if (ch == 0x24) {
|
if (ch == 0x24) {
|
||||||
DocPrint(term.doc, "%s", "//$$$$");
|
DocPrint(term.doc, "$$");
|
||||||
}
|
}
|
||||||
if (ch >= 32 && ch < 256) // ZealOS's ASCII is up to 255
|
if (ch >= 32 && ch < 256) // ZealOS's ASCII is up to 255
|
||||||
{
|
{
|
||||||
DocPrint(term.doc, "%c", ch);
|
DocPrint(term.doc, "%c", ch);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
DocPrint(term.doc, "%c", '?'); // unrecognized character
|
DocPrint(term.doc, "?"); // unrecognized character
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue