diff options
Diffstat (limited to 'util/cbfstool/lzma/C/LzmaDec.h')
-rw-r--r-- | util/cbfstool/lzma/C/LzmaDec.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/util/cbfstool/lzma/C/LzmaDec.h b/util/cbfstool/lzma/C/LzmaDec.h index d296f85b03..1addabe55a 100644 --- a/util/cbfstool/lzma/C/LzmaDec.h +++ b/util/cbfstool/lzma/C/LzmaDec.h @@ -6,16 +6,7 @@ #include "Types.h" -/* #define _LZMA_PROB32 */ -/* _LZMA_PROB32 can increase the speed on some CPUs, - but memory usage for CLzmaDec::probs will be doubled in that case */ - -#ifdef _LZMA_PROB32 -#define CLzmaProb uint32_t -#else -#define CLzmaProb uint16_t -#endif - +typedef uint16_t CLzmaProb; /* ---------- LZMA Properties ---------- */ |