From 925a66d498c34f25c57878a392efac951c4adfcb Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sun, 22 Feb 2009 16:54:28 +0000 Subject: [PATCH] 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 --- Source/Core/DiscIO/Src/Blob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/Src/Blob.cpp b/Source/Core/DiscIO/Src/Blob.cpp index 88d3908eb7..11318f2c43 100644 --- a/Source/Core/DiscIO/Src/Blob.cpp +++ b/Source/Core/DiscIO/Src/Blob.cpp @@ -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);