Skip to content

Commit

Permalink
Win32 fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 23, 2002
1 parent a8882c0 commit 7606e3b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions archivers/qpak.c
Expand Up @@ -192,7 +192,7 @@ static int QPAK_isArchive(const char *filename, int forWriting)
static int qpak_loadEntries(void *fh, int dirOffset, int numEntries,
QPAKentry *entries)
{
PHYSFS_uint32 i;
PHYSFS_sint32 i;

BAIL_IF_MACRO(__PHYSFS_platformSeek(fh, dirOffset) == 0, NULL, 0);

Expand Down Expand Up @@ -403,7 +403,7 @@ static QPAKentry *qpak_findEntry(QPAKdirectory *root, const char *name)
static int qpak_populateDirectories(QPAKentry *entries, int numEntries,
QPAKdirectory *root)
{
PHYSFS_uint32 i;
PHYSFS_sint32 i;
QPAKentry *entry = entries;

for (i = 0; i < numEntries; i++, entry++)
Expand Down
1 change: 0 additions & 1 deletion archivers/zip.c
Expand Up @@ -1293,7 +1293,6 @@ static PHYSFS_sint64 ZIP_getLastModTime(DirHandle *h,
static int ZIP_isDirectory(DirHandle *h, const char *name, int *fileExists)
{
ZIPinfo *info = (ZIPinfo *) h->opaque;
PHYSFS_sint32 pos;
int isDir;
ZIPentry *entry = zip_find_entry(info, name, &isDir);

Expand Down
8 changes: 6 additions & 2 deletions physfs.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7606e3b

Please sign in to comment.