mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
patch by Daco for extracting directory contents from a gcm (which also allows dumping an entire partion other than 0 from a wii disc)
plus a small fix for File::GetSize log git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4258 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
512053fa5e
commit
be702ce750
5 changed files with 66 additions and 12 deletions
|
@ -332,7 +332,7 @@ u64 GetSize(const char *filename)
|
|||
// on windows it's actually _stat64 defined in commonFuncs
|
||||
struct stat64 buf;
|
||||
if (stat64(filename, &buf) == 0) {
|
||||
DEBUG_LOG(COMMON, "GetSize: %s: %d", filename, buf.st_size);
|
||||
DEBUG_LOG(COMMON, "GetSize: %s: %ld", filename, buf.st_size);
|
||||
return buf.st_size;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue