diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-03-29 00:07:12 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-03-29 00:07:12 +0000 |
commit | 1a076c057a69b295a83f00c84d80d16d21921645 (patch) | |
tree | 3142108146c15ee5d0ed008785f058848c41b55b /highscore.c | |
parent | a41ae6f9fbd0466a9a5e14af5c69bdabfafd6a8d (diff) | |
download | grv-1a076c057a69b295a83f00c84d80d16d21921645.tar.gz grv-1a076c057a69b295a83f00c84d80d16d21921645.tar.xz grv-1a076c057a69b295a83f00c84d80d16d21921645.zip |
Get rid of open-coded non-ASCII characters.origin
Diffstat (limited to 'highscore.c')
-rw-r--r-- | highscore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/highscore.c b/highscore.c index 35ebc9f..e8f41d3 100644 --- a/highscore.c +++ b/highscore.c @@ -66,8 +66,8 @@ static void enter_name(int rank, char *player) { static const unsigned char *symbols[3] = { "ABCDEFGHIJKLMNOPQRSTUVWXYZ\x8f\x8e\x99""0123456789?", - "\x01\x02\x0e\x0f\x10\x11\x18\x19._-/:;+$%&^!*@=,'`~<>()®¯\"\x80\x90\x92\x9aí¥", - "\x13äêï±ùÍþëñìå SPACE DELETE ENTER " + "\x01\x02\x0e\x0f\x10\x11\x18\x19._-/:;+$%&^!*@=,'`~<>()\xae\xaf\"\x80\x90\x92\x9a\xed\xa5", + "\x13\xe4\xea\xef\xb1\xf9\xcd\xfe\xeb\xf1\xec\xe5 SPACE DELETE ENTER " }; int x, y, x1, y1; int ly, ry, vy; |