Mercurial > hg > rlgwebd
comparison rlgwebd.js @ 121:077adfeea038
Correct the clear sequence for srogue.
rlgwebd sets TERM to xterm-256color, which uses CSI H CSI 2J to clear
the screen. The description of srogue had been CSI H CSI J, which is
the sequence for screen.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Sat, 11 Aug 2012 21:30:12 -0700 |
parents | 54979d35611a |
children | fbeb0bf2b51d |
comparison
equal
deleted
inserted
replaced
120:54979d35611a | 121:077adfeea038 |
---|---|
50 "srogue": { | 50 "srogue": { |
51 "name": "Super-Rogue", | 51 "name": "Super-Rogue", |
52 "uname": "srogue", | 52 "uname": "srogue", |
53 "suffix": ".srsav", | 53 "suffix": ".srsav", |
54 "path": "/bin/srogue", | 54 "path": "/bin/srogue", |
55 "clear": new Buffer([27, 91, 72, 27, 91, 74]) // CSI H CSI J | 55 "clear": new Buffer([27, 91, 72, 27, 91, 50, 74]) // CSI H CSI 2J |
56 }, | 56 }, |
57 "arogue5": { | 57 "arogue5": { |
58 "name": "Advanced Rogue 5", | 58 "name": "Advanced Rogue 5", |
59 "uname": "arogue5", | 59 "uname": "arogue5", |
60 "suffix": ".ar5sav", | 60 "suffix": ".ar5sav", |