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:
John "Elwin" Edwards 2012-08-11 21:30:12 -07:00
parent e4ce0b48a3
commit 51978efd4e

View file

@ -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",