From 0f827a9eba6f5affbcf1661be7900da687d9b023 Mon Sep 17 00:00:00 2001 From: Crsky Date: Sun, 11 Sep 2022 04:43:44 +0800 Subject: [PATCH] Change some fields from private to protected. --- ArcFormats/KiriKiri/KiriKiriCx.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ArcFormats/KiriKiri/KiriKiriCx.cs b/ArcFormats/KiriKiri/KiriKiriCx.cs index d119f740..7b0d9712 100644 --- a/ArcFormats/KiriKiri/KiriKiriCx.cs +++ b/ArcFormats/KiriKiri/KiriKiriCx.cs @@ -55,8 +55,8 @@ namespace GameRes.Formats.KiriKiri [Serializable] public class CxEncryption : ICrypt { - private uint m_mask; - private uint m_offset; + protected uint m_mask; + protected uint m_offset; protected byte[] PrologOrder; protected byte[] OddBranchOrder; @@ -207,7 +207,7 @@ namespace GameRes.Formats.KiriKiri Decrypt (entry, offset, values, pos, count); } - Tuple ExecuteXCode (uint hash) + protected Tuple ExecuteXCode (uint hash) { uint seed = hash & 0x7f; if (null == m_program_list[seed])