(KcapTransform): fixed CanTransformMultipleBlocks property.

This commit is contained in:
morkt 2016-12-26 15:42:49 +04:00
parent fddee82ab6
commit c524a41041

View File

@ -28,7 +28,6 @@ using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Security.Cryptography;
using System.IO;
using GameRes.Utility;
using GameRes.Formats.Strings;
using GameRes.Formats.Properties;
@ -229,7 +228,7 @@ namespace GameRes.Formats.Selene
private readonly byte[] KeyTable;
public bool CanReuseTransform { get { return true; } }
public bool CanTransformMultipleBlocks { get { return true; } }
public bool CanTransformMultipleBlocks { get { return false; } }
public int InputBlockSize { get { return KeyTable.Length; } }
public int OutputBlockSize { get { return KeyTable.Length; } }