mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-06-04 11:10:48 +00:00
* Updated to ZDoom r3690:
- Added the CCMD listsnapshots to show which maps have savedata stored. - Added textual descriptions of the zlib errors. - Fixed: FinalGC() needs to run before the type system is shut down. - Fixed: Don't access class metadata at all in DObject::PropagateMark if the type system is shutdown. - Fixed: If FCompressedMemFile::Reopen() fails, then it would try to double-free memory when deleted. - Fixed: The text screen's color #6 should be brown, not dark yellow. - Fixed: Direct ACS instructions need to tag their strings before lookup. git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@1405 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
parent
a79fe7da6d
commit
6f2a88be6f
15 changed files with 117 additions and 51 deletions
|
@ -36,6 +36,7 @@
|
|||
#include "files.h"
|
||||
#include "i_system.h"
|
||||
#include "templates.h"
|
||||
#include "m_misc.h"
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
|
@ -223,7 +224,7 @@ FileReaderZ::FileReaderZ (FileReader &file, bool zip)
|
|||
|
||||
if (err != Z_OK)
|
||||
{
|
||||
I_Error ("FileReaderZ: inflateInit failed: %d\n", err);
|
||||
I_Error ("FileReaderZ: inflateInit failed: %s\n", M_ZLibError(err));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue