From 3c650bdde742878c2d87a76de1a742673fe70a81 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Fri, 2 Apr 2021 03:14:15 -0500 Subject: [PATCH] Update 7zip.h Fix comments --- Source/Project64-core/3rdParty/7zip.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Project64-core/3rdParty/7zip.h b/Source/Project64-core/3rdParty/7zip.h index 6f64673a1..22b179d7b 100644 --- a/Source/Project64-core/3rdParty/7zip.h +++ b/Source/Project64-core/3rdParty/7zip.h @@ -55,13 +55,13 @@ private: int m_CurrentFile; bool m_Opened; - //Used for extraction - UInt32 m_blockIndex; // it can have any value before first call (if outBuffer = 0) - Byte * m_outBuffer; // it must be 0 before first call for each new archive. - size_t m_outBufferSize; // it can have any value before first call (if outBuffer = 0) + // Used for extraction + UInt32 m_blockIndex; // It can have any value before first call (if outBuffer = 0) + Byte * m_outBuffer; // It must be 0 before first call for each new archive + size_t m_outBufferSize; // It can have any value before first call (if outBuffer = 0) static void * AllocAllocImp(void *p, size_t size); - static void AllocFreeImp(void *p, void *address); /* address can be 0 */ + static void AllocFreeImp(void *p, void *address); // Address can be 0 static SRes SzFileReadImp(void *object, void *buffer, size_t *processedSize); static SRes SzFileSeekImp(void *p, Int64 *pos, ESzSeek origin);