diff options
author | Lars Persson | 2008-07-18 22:07:52 +0000 |
---|---|---|
committer | Lars Persson | 2008-07-18 22:07:52 +0000 |
commit | 4657a52b077740c0c1da6208019ba886d0da2242 (patch) | |
tree | 6c8447db4b97d272e547f579b3bcbe09da47f6cf | |
parent | 0f03a7bcd82ae6e07521cfaf599b41ac6b38f5ef (diff) | |
download | scummvm-rg350-4657a52b077740c0c1da6208019ba886d0da2242.tar.gz scummvm-rg350-4657a52b077740c0c1da6208019ba886d0da2242.tar.bz2 scummvm-rg350-4657a52b077740c0c1da6208019ba886d0da2242.zip |
Fixed typo in filehandling
svn-id: r33104
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 5544cf0887..d362d27d74 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -555,7 +555,7 @@ size_t symbian_fread(const void* ptr, size_t size, size_t numItems, FILE* handle } else { - TPtr8 cacheBuffer( (unsigned char*) entry->iInputBuffer, KInputBufferLength, entry->iInputBufferLen); + TPtr8 cacheBuffer( (unsigned char*) entry->iInputBuffer, entry->iInputBufferLen, KInputBufferLength); if(entry->iInputPos+totsize < entry->iInputBufferLen) { pointer.Copy(cacheBuffer.Mid(entry->iInputPos, totsize)); |