diff options
author | pixel <pixel> | 2003-11-07 12:53:41 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-11-07 12:53:41 +0000 |
commit | 120a4aa66031c977dbdb6814951d49d4884783b4 (patch) | |
tree | 3625064f7b014bbf8b2ff4346cf0dc7b213d3d2b /lib | |
parent | b17b4a46f0df7a0013e93a9907cf0ef460244626 (diff) |
Little harmless fix...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lzss.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/lzss.cpp b/lib/lzss.cpp index c63a552..c95de5f 100644 --- a/lib/lzss.cpp +++ b/lib/lzss.cpp @@ -177,7 +177,6 @@ unsigned int lzss::lzss_decomp(Handle * f_source, Handle * f_cible, int true_len decomp_jump += scheme.one_jump; decomp_length = decomp_length + 3 + scheme.sixteen_bits; decomp_fill = decomp_fill + 3 + scheme.sixteen_bits; - #if 0 /* Zelda GC */ decomp_length--; if (decomp_length == 2) { @@ -185,7 +184,6 @@ unsigned int lzss::lzss_decomp(Handle * f_source, Handle * f_cible, int true_len decomp_length = f_source->readU8() + 18; } #endif - if ((decomp_length == lzss_maxsize) && (scheme.filling)) { if ((decomp_fill == 3) && (scheme.filling == 2)) { f_source->read(&val3, 1); |