From 6961cd51b65e8df7f807e25ab6ffc4da8c205449 Mon Sep 17 00:00:00 2001 From: Ladislav Zezula Date: Thu, 12 Dec 2013 11:15:16 +0100 Subject: + Fixed warnings + Added SBaseDumpData to the makefiles --- src/SBaseFileTable.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/SBaseFileTable.cpp') diff --git a/src/SBaseFileTable.cpp b/src/SBaseFileTable.cpp index bf6be59..d4155bd 100644 --- a/src/SBaseFileTable.cpp +++ b/src/SBaseFileTable.cpp @@ -229,12 +229,10 @@ void SetBits( //----------------------------------------------------------------------------- // Support for MPQ header -static DWORD GetMaxFileOffset32(TMPQArchive * ha, TMPQBlock * pBlockTable, DWORD dwBlockTableSize) +static DWORD GetMaxFileOffset32(TMPQArchive * ha) { TMPQHeader * pHeader = ha->pHeader; DWORD dwMaxFileOffset = ha->pHeader->dwArchiveSize; - DWORD dwByteOffset; - DWORD dwBlockIndex; // We can call this only for malformed archives v 1.0 assert(ha->pHeader->wFormatVersion == MPQ_FORMAT_VERSION_1); @@ -2230,7 +2228,7 @@ static void FixCompressedFileSize( if(SortTable != NULL) { // Calculate the end of the archive - dwMaxFileOffs = GetMaxFileOffset32(ha, pBlockTable, pHeader->dwBlockTableSize); + dwMaxFileOffs = GetMaxFileOffset32(ha); // Put all blocks to a sort table for(pBlock = pBlockTable; pBlock < pBlockTableEnd; pBlock++) @@ -2751,7 +2749,7 @@ int RebuildFileTable(TMPQArchive * ha, DWORD dwNewHashTableSize, DWORD dwNewMaxF } // Move the file entry by one - *pFileEntry++; + pFileEntry++; } } -- cgit v1.2.3