win32 synch

This commit is contained in:
nethack.allison
2003-10-13 15:40:16 +00:00
parent 99c8d27a70
commit 10160cc4d9
2 changed files with 3 additions and 1 deletions

View 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

View 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);