From bbd7476b6ffe13b5184b1ac534c53f32263dfa12 Mon Sep 17 00:00:00 2001 From: Crsky Date: Tue, 17 Mar 2026 17:29:53 +0800 Subject: [PATCH] style: format --- ArcFormats/KiriKiri/ImageTLG.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ArcFormats/KiriKiri/ImageTLG.cs b/ArcFormats/KiriKiri/ImageTLG.cs index 3dc1542b..2ebaf1a4 100644 --- a/ArcFormats/KiriKiri/ImageTLG.cs +++ b/ArcFormats/KiriKiri/ImageTLG.cs @@ -1234,7 +1234,7 @@ namespace GameRes.Formats.KiriKiri public QoiDecodeStream (IBinaryStream input) { m_input = input; - m_table = new byte[4*QoiCodec.HashTableSize]; + m_table = new byte [4*QoiCodec.HashTableSize]; m_pixel = 0xFF000000; } @@ -1329,7 +1329,7 @@ namespace GameRes.Formats.KiriKiri m_qoi.Read (out var p1); if (0 != p0 || 0xFF000000 != p1) throw new InvalidFormatException (); - var r0 = m_run.Read(); + var r0 = m_run.Read (); if (0 != r0) throw new InvalidFormatException (); var dst = m_dst; @@ -1515,7 +1515,7 @@ namespace GameRes.Formats.KiriKiri throw new InvalidFormatException (); } var data_offset = src.Position; - var image = new byte[4*info.Width*info.Height]; + var image = new byte [4*info.Width*info.Height]; foreach (var slice_info in slices) { src.Position = data_offset + slice_info.DataOffset;