summaryrefslogtreecommitdiff
path: root/src/win95/hierchnk.cpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-07-28 23:13:49 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit71fa444424be52b9b2c3fd508ad663923d28a62c (patch)
treeea900efcb439d1889255e0c598dbf455608f36a4 /src/win95/hierchnk.cpp
parentf759e35cd8399d8bffea4d59c5822db8f1002409 (diff)
Removed headers that were accidently checked in.
Lots of compiling.
Diffstat (limited to 'src/win95/hierchnk.cpp')
-rw-r--r--src/win95/hierchnk.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/win95/hierchnk.cpp b/src/win95/hierchnk.cpp
index 5b26379..3f48e48 100644
--- a/src/win95/hierchnk.cpp
+++ b/src/win95/hierchnk.cpp
@@ -298,6 +298,7 @@ Object_Hierarchy_Alternate_Shape_Set_Chunk::Object_Hierarchy_Alternate_Shape_Set
Object_Hierarchy_Alternate_Shape_Set_Chunk::Object_Hierarchy_Alternate_Shape_Set_Chunk(Chunk_With_Children* parent,const char* data,size_t)
:Chunk(parent,"OBHALTSH")
{
+ int i;
Shape_Set_Num=*(int*)data;
data+=4;
@@ -310,7 +311,7 @@ Object_Hierarchy_Alternate_Shape_Set_Chunk::Object_Hierarchy_Alternate_Shape_Set
int num_shapes=*(int*)data;
data+=4;
- for(int i=0;i<num_shapes;i++)
+ for(i=0;i<num_shapes;i++)
{
Replaced_Shape_Details* rsd=new Replaced_Shape_Details;