Changed a couple of int64's back to int32.

This commit is contained in:
Robert Osfield
2003-09-15 22:13:26 +00:00
parent a2f9222753
commit 151bd467ca
2 changed files with 2 additions and 2 deletions

View File

@@ -677,7 +677,7 @@ bool trpgwArchive::WriteTile(unsigned int x,unsigned int y,unsigned int lod, flo
return false;
}
int64 pos = tileFile->Pos();
int32 pos = static_cast<int32>(tileFile->Pos());
if (!tileFile->Append(head,buf))
return false;
// Keep track of the fact that this went here

View File

@@ -273,7 +273,7 @@ public:
public:
int x,y,lod; // Identifying info for tile
float zmin,zmax;
int64 offset; // Offset into file
int32 offset; // Offset into file
};
class TileFile {
public: