mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Fix since mth's version killed everything, even the baby sea lions
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@572 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
67aa39c89e
commit
1a7f5bb564
@ -22,13 +22,10 @@
|
|||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace DiscIO
|
namespace DiscIO
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
|
|
||||||
PlainFileReader::PlainFileReader(HANDLE hFile_)
|
PlainFileReader::PlainFileReader(HANDLE hFile_)
|
||||||
{
|
{
|
||||||
hFile = hFile_;
|
hFile = hFile_;
|
||||||
@ -53,22 +50,27 @@ PlainFileReader::~PlainFileReader()
|
|||||||
CloseHandle(hFile);
|
CloseHandle(hFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlainFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
bool PlainFileReader::Read(u64 offset, u64 size, u8* out_ptr)
|
||||||
{
|
{
|
||||||
LONG offset_high = (LONG)(offset >> 32);
|
LONG offset_high = (LONG)(offset >> 32);
|
||||||
SetFilePointer(hFile, (DWORD)(offset & 0xFFFFFFFF), &offset_high, FILE_BEGIN);
|
SetFilePointer(hFile, (DWORD)(offset & 0xFFFFFFFF), &offset_high, FILE_BEGIN);
|
||||||
|
|
||||||
if (nbytes >= 0x100000000ULL)
|
if (size >= 0x100000000ULL)
|
||||||
return false; // WTF, does windows really have this limitation?
|
return false; // WTF, does windows really have this limitation?
|
||||||
|
|
||||||
DWORD unused;
|
DWORD unused;
|
||||||
if (!ReadFile(hFile, out_ptr, DWORD(nbytes & 0xFFFFFFFF), &unused, NULL))
|
if (!ReadFile(hFile, out_ptr, DWORD(size & 0xFFFFFFFF), &unused, NULL))
|
||||||
return false;
|
return false;
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else // POSIX
|
} // namespace
|
||||||
|
|
||||||
|
#else // linux, 64-bit. We do not yet care about linux32
|
||||||
|
|
||||||
|
namespace DiscIO
|
||||||
|
{
|
||||||
|
|
||||||
PlainFileReader::PlainFileReader(FILE* file__)
|
PlainFileReader::PlainFileReader(FILE* file__)
|
||||||
{
|
{
|
||||||
@ -86,8 +88,9 @@ PlainFileReader* PlainFileReader::Create(const char* filename)
|
|||||||
{
|
{
|
||||||
FILE* file_ = fopen(filename, "rb");
|
FILE* file_ = fopen(filename, "rb");
|
||||||
if (file_)
|
if (file_)
|
||||||
|
{
|
||||||
return new PlainFileReader(file_);
|
return new PlainFileReader(file_);
|
||||||
else
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,13 +101,11 @@ PlainFileReader::~PlainFileReader()
|
|||||||
|
|
||||||
bool PlainFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
bool PlainFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
||||||
{
|
{
|
||||||
int seekStatus = fseek(file_, offset, SEEK_SET);
|
fseek(file_, offset, SEEK_SET);
|
||||||
if (seekStatus != 0)
|
fread(out_ptr, nbytes, 1, file_);
|
||||||
return false;
|
return true;
|
||||||
size_t bytesRead = fread(out_ptr, nbytes, 1, file_);
|
|
||||||
return bytesRead == nbytes;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
#endif
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#else
|
|
||||||
#include <cstdio>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace DiscIO
|
namespace DiscIO
|
||||||
@ -45,7 +43,7 @@ public:
|
|||||||
~PlainFileReader();
|
~PlainFileReader();
|
||||||
u64 GetDataSize() const { return size; }
|
u64 GetDataSize() const { return size; }
|
||||||
u64 GetRawSize() const { return size; }
|
u64 GetRawSize() const { return size; }
|
||||||
bool Read(u64 offset, u64 nbytes, u8* out_ptr);
|
bool Read(u64 offset, u64 size, u8* out_ptr);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
Loading…
x
Reference in New Issue
Block a user