From c524a4104166784347edb003ca3078a66153be58 Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 26 Dec 2016 15:42:49 +0400 Subject: [PATCH] (KcapTransform): fixed CanTransformMultipleBlocks property. --- ArcFormats/Selene/ArcKCAP.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ArcFormats/Selene/ArcKCAP.cs b/ArcFormats/Selene/ArcKCAP.cs index ad1646bb..b1193203 100644 --- a/ArcFormats/Selene/ArcKCAP.cs +++ b/ArcFormats/Selene/ArcKCAP.cs @@ -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; } }