Skip to content
Snippets Groups Projects
Commit 3693357b authored by ticki's avatar ticki Committed by GitHub
Browse files

Merge pull request #23 from MovingtoMars/cursor_fix

fix cursor moving
parents 9acd4852 aaeeb06d
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ pub trait TermWrite {
b'0' + (num / 100) as u8 % 10,
b'0' + (num / 10) as u8 % 10,
b'0' + num as u8 % 10,
b'C'])
b'D'])
} else {
Ok(0)
}
......@@ -64,7 +64,7 @@ pub trait TermWrite {
b'0' + (num / 100) as u8 % 10,
b'0' + (num / 10) as u8 % 10,
b'0' + num as u8 % 10,
b'D'])
b'C'])
} else {
Ok(0)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment