Skip to content
Snippets Groups Projects
Commit 704eba93 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix error with PETSCII_UPPERLOWER use

line 445: Error: can't convert PETSCII_UPPERLOWER to an integer

reported by Nelgin
parent 00e2d7be
No related branches found
No related tags found
No related merge requests found
......@@ -225,7 +225,7 @@ var thisuser = new User(argv[0] || user.number);
const userSigFilename = system.data_dir + "user" + format("%04d.sig", thisuser.number);
const PETSCII_DELETE = '\x14';
const PETSCII_UPPERLOWER = '\x1d';
const PETSCII_UPPERLOWER = 0x1d;
while(bbs.online && !js.terminated) {
bbs.node_action = NODE_DFLT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment