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.
This commit is contained in:
parent
e4ce0b48a3
commit
51978efd4e
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ var games = {
|
|||
"uname": "srogue",
|
||||
"suffix": ".srsav",
|
||||
"path": "/bin/srogue",
|
||||
"clear": new Buffer([27, 91, 72, 27, 91, 74]) // CSI H CSI J
|
||||
"clear": new Buffer([27, 91, 72, 27, 91, 50, 74]) // CSI H CSI 2J
|
||||
},
|
||||
"arogue5": {
|
||||
"name": "Advanced Rogue 5",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue