From 2d05cdbda409ff3b4e6e228ae68232446d919b36 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 24 Jun 2006 03:48:38 +0000 Subject: [PATCH] Last commit was incomplete. SVN r218 (trunk) --- src/win32/i_crash.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/win32/i_crash.cpp b/src/win32/i_crash.cpp index 071e9edb1..ecdb6b762 100644 --- a/src/win32/i_crash.cpp +++ b/src/win32/i_crash.cpp @@ -1110,12 +1110,11 @@ static DWORD WriteBlock (HANDLE file, LPCVOID buffer, DWORD bytes, z_stream *str // // WriteZip // -// Writes a .zip/pk3 file. If deflateInit fails, then ".gz" the gzip -// argument will be false, otherwise it will be set true. A HANDLE to the -// file is returned. This file is delete-on-close. +// Writes a .zip/pk3 file. A HANDLE to the file is returned. This file is +// delete-on-close. // // The archive contains all the files previously passed to AddFile(). They -// must still be open, because WriteTar() does not open them itself. +// must still be open, because MakeZip() does not open them itself. // //========================================================================== @@ -2849,8 +2848,8 @@ static void SaveReport (HANDLE file) , }; char filename[256]; - ofn.lpstrFilter = "Zip file (*.pk3)\0*.pk3\0"; - strcpy (filename, "CrashReport.pk3"); + ofn.lpstrFilter = "Zip file (*.zip)\0*.zip\0"; + strcpy (filename, "CrashReport.zip"); ofn.lpstrFile = filename; ofn.nMaxFile = sizeof(filename);