Skip to content

Commit

Permalink
Patched to compile (thanks, Christoph!).
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 18, 2010
1 parent f1cd4d8 commit a4a7f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform_windows.c
Expand Up @@ -1494,7 +1494,7 @@ static int __PHYSFS_platformStatNewWay(const char *filename, int *exists,
else
{
stat->filetype = PHYSFS_FILETYPE_REGULAR;
filesize = (((PHYSFS_uint64) winstat.nFileSizeHigh) << 32) | winstat.nFileSizeLow;
stat->filesize = (((PHYSFS_uint64) winstat.nFileSizeHigh) << 32) | winstat.nFileSizeLow;
} /* else */

stat->readonly = ((winstat.dwFileAttributes & FILE_ATTRIBUTE_READONLY) != 0);
Expand Down

0 comments on commit a4a7f88

Please sign in to comment.