Should fix Issue 538: Linuz plugin compression broken.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2428 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-01-15 03:14:33 +00:00
parent 1511703bdb
commit b1ef60c0f7
1 changed files with 3 additions and 3 deletions

View File

@ -178,9 +178,9 @@ void OnCompress()
for (lsn = 0; lsn < src->blocks; lsn++)
{
printf("block %d ", lsn);
putchar(13);
fflush(stdout);
//printf("block %d ", lsn);
//putchar(13);
//fflush(stdout);
ret = isoReadBlock(src, cdbuff, lsn);
if (ret == -1) break;
ret = isoWriteBlock(dst, cdbuff, lsn);