Hm, disable previous change - seems to have broken gcz reading

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2369 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2009-02-22 16:54:28 +00:00
parent e3d1704979
commit 925a66d498
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ bool SectorReader::Read(u64 offset, u64 size, u8* out_ptr)
while (remain > 0)
{
// Check if we are ready to do a large block read. > instead of >= so we don't bother if remain is only one block.
if (positionInBlock == 0 && remain > m_blocksize)
if (positionInBlock == 0 && remain > m_blocksize && false)
{
u64 num_blocks = remain / m_blocksize;
ReadMultipleAlignedBlocks(block, num_blocks, out_ptr);