<email deleted>

The following fixes several bugs:
1) Mismatch between docs and game in definition of what '+' resolved in
favor of docs...
2) When game needs to be recovered a message box is shown.  This is a very
deprecated fix.  It pretty much answers just the conditions that require
this (a yn question to an erroneous winid), and is not useful for other
purposes.
3) The score file is written.
This commit is contained in:
nethack.allison
2002-02-03 17:51:54 +00:00
parent ab55d29244
commit baa752d5f9
6 changed files with 32 additions and 16 deletions
+1 -4
View File
@@ -62,6 +62,7 @@ int APIENTRY WinMain(HINSTANCE hInstance,
_nethack_app.winStatusAlign = NHWND_ALIGN_BOTTOM;
_nethack_app.winMessageAlign = NHWND_ALIGN_TOP;
_nethack_app.mapCliparoundMargin = DEF_CLIPAROUND_MARGIN;
_nethack_app.saved_text = strdup(TEXT(""));
// init controls
ZeroMemory(&InitCtrls, sizeof(InitCtrls));
@@ -75,10 +76,6 @@ int APIENTRY WinMain(HINSTANCE hInstance,
return FALSE;
}
#ifdef _DEBUG
wizard = TRUE;
#endif
/* get command line parameters */
p = _tcstok(GetCommandLine(), TEXT(" "));
for( argc=0; p && argc<MAX_CMDLINE_PARAM; argc++ ) {