Tier1: assert on LZSS window size being a power of 2

This commit is contained in:
Kawe Mazidjatari 2024-02-19 21:21:28 +01:00
parent e72f13ee0f
commit 5b0b386ea7

View File

@ -65,6 +65,7 @@ private:
FORCEINLINE CLZSS::CLZSS( int nWindowSize )
{
Assert( IsPowerOfTwo( nWindowSize ) );
m_nWindowSize = nWindowSize;
}
#endif