summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/pieceinf.cpp2
-rw-r--r--common/pieceinf.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/common/pieceinf.cpp b/common/pieceinf.cpp
index 56cf7c3..ffb1a76 100644
--- a/common/pieceinf.cpp
+++ b/common/pieceinf.cpp
@@ -223,7 +223,7 @@ void PieceInfo::LoadIndex (File& file)
m_strDescription[64] = '\0';
file.ReadShort (sh, 6);
file.ReadByte (&m_nFlags, 1);
- file.ReadLong (&m_nGroups, 1);
+ lcuint32 Groups; file.ReadLong (&Groups, 1);
file.ReadLong (&m_nOffset, 1);
file.ReadLong (&m_nSize, 1);
diff --git a/common/pieceinf.h b/common/pieceinf.h
index 9dd3d94..7676700 100644
--- a/common/pieceinf.h
+++ b/common/pieceinf.h
@@ -98,7 +98,6 @@ public:
float m_fDimensions[6];
unsigned long m_nOffset;
unsigned long m_nSize;
- unsigned long m_nGroups;
// Nobody should change these
unsigned char m_nFlags;