diff options
author | Ruediger Hanke | 2002-08-07 13:26:20 +0000 |
---|---|---|
committer | Ruediger Hanke | 2002-08-07 13:26:20 +0000 |
commit | d0a9419c98ae2f1fa99c1162d31621d2bb937f43 (patch) | |
tree | c0979eb72d648ce83c85da8f174850ca48233d30 /bundle.cpp | |
parent | c33969b8389fc6b99908cc830768f53b078d33dc (diff) | |
download | scummvm-rg350-d0a9419c98ae2f1fa99c1162d31621d2bb937f43.tar.gz scummvm-rg350-d0a9419c98ae2f1fa99c1162d31621d2bb937f43.tar.bz2 scummvm-rg350-d0a9419c98ae2f1fa99c1162d31621d2bb937f43.zip |
input/output were swapped in codec 0
svn-id: r4713
Diffstat (limited to 'bundle.cpp')
-rw-r--r-- | bundle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.cpp b/bundle.cpp index ea3456206c..580d902138 100644 --- a/bundle.cpp +++ b/bundle.cpp @@ -319,7 +319,7 @@ int32 Bundle::decompressCodec(int32 codec, byte * comp_input, byte * comp_output switch(codec) { case 0: - memcpy(comp_input, comp_output, output_size); + memcpy(comp_output, comp_input, output_size); break; case 1: |