quickdev16/bsnes/reader/jma/ariprice.h
2009-04-08 21:29:36 +02:00

13 lines
222 B
C++
Executable File

#ifndef __COMPRESSION_ARIPRICE_H
#define __COMPRESSION_ARIPRICE_H
namespace NCompression {
namespace NArithmetic {
const UINT32 kNumBitPriceShiftBits = 6;
const UINT32 kBitPrice = 1 << kNumBitPriceShiftBits;
}}
#endif