]> granicus.if.org Git - nethack/commitdiff
win32 synch
authornethack.allison <nethack.allison>
Mon, 13 Oct 2003 15:40:16 +0000 (15:40 +0000)
committernethack.allison <nethack.allison>
Mon, 13 Oct 2003 15:40:16 +0000 (15:40 +0000)
doc/fixes34.3
sys/winnt/nttty.c

index 65affd77e8fb3f33c90442b016066cada53a8ff2..e90cd24270ebbcf422d53935021f558e447f71ec 100644 (file)
@@ -53,6 +53,8 @@ Vlad won't waste time trying to use wand of digging in his own tower
 Platform- and/or Interface-Specific Fixes
 -----------------------------------------
 win32tty: fix visible CRLF characters during lockfile error message
+win32tty: switch to low level console routines
+win32tty: refrain from cursor movement until an input is pending (M. Lehotay)
 win32gui: you couldn't specify an alignment in defaults.nh and have it stick
 win32gui: allow race/gender/alignment selections beyond those specified in
        defaults.nh, while still honoring defaults.nh choices
index 898ee99c0d4b97fca12f938e6f31975977c377f1..1ef8a6de18ca7350afa1c41bd244e4fabf9a3e31 100644 (file)
@@ -391,7 +391,7 @@ char ch;
        switch(ch) {
            case '\n':
            case '\r':
-!                  cmov(cursor.X, cursor.Y);
+                   cmov(cursor.X, cursor.Y);
                    return;
        }
        WriteConsoleOutputAttribute(hConOut,&attr,1,cursor,&acount);