fix getsize on 32 bit linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1288 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
0d714b9971
commit
4dd91ec191
|
@ -191,15 +191,25 @@ std::string GetUserDirectory()
|
||||||
|
|
||||||
u64 GetSize(const char *filename)
|
u64 GetSize(const char *filename)
|
||||||
{
|
{
|
||||||
FILE *pFile = fopen(filename, "rb");
|
#ifdef _WIN32
|
||||||
if (pFile)
|
FILE *pFile = fopen(filename, "rb");
|
||||||
|
if (pFile)
|
||||||
{
|
{
|
||||||
fseek(pFile, 0, SEEK_END);
|
fseek(pFile, 0, SEEK_END);
|
||||||
u64 pos = ftell(pFile);
|
u64 pos = ftell(pFile);
|
||||||
fclose(pFile);
|
fclose(pFile);
|
||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
return 0;
|
#else
|
||||||
|
struct stat buf;
|
||||||
|
if (stat(filename, &buf) == 0) {
|
||||||
|
return buf.st_size;
|
||||||
|
}
|
||||||
|
int err = errno;
|
||||||
|
PanicAlert("Error stating %s: %s", filename, strerror(err));
|
||||||
|
|
||||||
|
#endif
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -263,6 +273,7 @@ u32 ScanDirectoryTree(const std::string& _Directory, FSTEntry& parentEntry)
|
||||||
#else
|
#else
|
||||||
u32 ScanDirectoryTree(const std::string& _Directory, FSTEntry& parentEntry)
|
u32 ScanDirectoryTree(const std::string& _Directory, FSTEntry& parentEntry)
|
||||||
{
|
{
|
||||||
|
PanicAlert("Scan directory not implemanted yet\n");
|
||||||
// TODO - Insert linux stuff here
|
// TODO - Insert linux stuff here
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue