aboutsummaryrefslogtreecommitdiff
path: root/backends/ps2/fileio.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /backends/ps2/fileio.cpp
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'backends/ps2/fileio.cpp')
-rw-r--r--backends/ps2/fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/ps2/fileio.cpp b/backends/ps2/fileio.cpp
index f8d86712e5..9debdc39d6 100644
--- a/backends/ps2/fileio.cpp
+++ b/backends/ps2/fileio.cpp
@@ -193,7 +193,7 @@ void Ps2ReadFile::cacheReadAhead(void) {
sioprintf("cache seek error: seek to %d instead of %d, fs = %d", _physFilePos, cachePosEnd, _fileSize);
return;
}
- }
+ }
uint32 cacheDest = (_cacheOfs + _bytesInCache) % CACHE_SIZE;
uint32 cacheRead = CACHE_SIZE - _bytesInCache;
@@ -247,7 +247,7 @@ uint32 Ps2ReadFile::read(void *dest, uint32 len) {
_readBytesBlock = 0; // reset cache hit count
if (fio.seek(_fd, _filePos, SEEK_SET) == _filePos)
- _physFilePos = _filePos;
+ _physFilePos = _filePos;
else
break; // read beyond EOF
}