diff options
| author | Kazutaka YOKOTA <yokota@FreeBSD.org> | 2001-10-02 09:13:07 +0000 |
|---|---|---|
| committer | Kazutaka YOKOTA <yokota@FreeBSD.org> | 2001-10-02 09:13:07 +0000 |
| commit | 4238458ba24305d2804cf796623682861881437d (patch) | |
| tree | 9653162841a1b2a4c57c10ca0e5262c77369d7b9 | |
| parent | a17d5ec55d318941a27c026273e0c64e179e9e07 (diff) | |
Notes
| -rw-r--r-- | sys/boot/i386/libi386/vidconsole.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/vidconsole.c b/sys/boot/i386/libi386/vidconsole.c index bfdb5c1136b4..8ae77ebe0534 100644 --- a/sys/boot/i386/libi386/vidconsole.c +++ b/sys/boot/i386/libi386/vidconsole.c @@ -227,7 +227,7 @@ curs_move(int x, int y) v86.eax = 0x0800; v86.ebx = 0x0; v86int(); -#define isvisible(c) (((c) > 32) && ((c) < 255)) +#define isvisible(c) (((c) >= 32) && ((c) < 255)) if (!isvisible(v86.eax & 0x00ff)) { write_char(' ', fg_c, bg_c); } |
