Update for Qt project files. New Symbian icon (Belle style) thanks to z435312561. Stat64 -> stat.

This commit is contained in:
Sacha
2013-01-22 16:17:44 +10:00
parent b30ab91379
commit 0ce45cef55
3 changed files with 615 additions and 171 deletions

View File

@@ -492,8 +492,8 @@ PSPFileInfo DirectoryFileSystem::GetFileInfo(std::string filename) {
if (x.type != FILETYPE_DIRECTORY)
{
struct stat64 s;
stat64(fullName.c_str(), &s);
struct stat s;
stat(fullName.c_str(), &s);
#ifdef _WIN32
WIN32_FILE_ATTRIBUTE_DATA data;
GetFileAttributesEx(fullName.c_str(), GetFileExInfoStandard, &data);