diff options
author | Pixel <pixel@nobis-crew.org> | 2009-05-25 04:15:43 +0000 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-05-25 04:15:43 +0000 |
commit | 2f6b22ede60a89cced23d499cd77413b9301a16d (patch) | |
tree | f57ed14d093f943d64a93c039604313392e0aa84 /lib/lzss.cpp | |
parent | 4984ff4a7cdc181aa8d4ff913ddc4323e77f4bca (diff) |
Adding the option to read or not the size in the lzss_decomp routine.
Diffstat (limited to 'lib/lzss.cpp')
-rw-r--r-- | lib/lzss.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/lzss.cpp b/lib/lzss.cpp index 1d7ecfb..7d86a32 100644 --- a/lib/lzss.cpp +++ b/lib/lzss.cpp @@ -105,7 +105,7 @@ void lzss::compute_limits(void) { printm(M_INFO, "Computed values: maxsize = %i, maxptr = 0x%06x\n", lzss_maxsize, lzss_maxptr); } -unsigned int lzss::lzss_decomp(Handle * f_source, Handle * f_cible, int true_length) +unsigned int lzss::lzss_decomp(Handle * f_source, Handle * f_cible, int true_length, bool read_length) { unsigned char bitmap, fbitmap; unsigned char valeur; @@ -125,7 +125,8 @@ unsigned int lzss::lzss_decomp(Handle * f_source, Handle * f_cible, int true_len compute_limits(); - f_source->read(&length, 4); + if (read_length) + f_source->read(&length, 4); if (true_length >= 0) { length = true_length; } |