Fix the local macro: isvisible().

- The space char (0x20) IS a visible char :-)
This commit is contained in:
yokota 2001-10-02 09:13:07 +00:00
parent 4a228ca74e
commit b377b77110

View File

@ -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);
}