From 43bbab00aba87f2a4dcf9c205588f3288e4d22c3 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Thu, 26 Dec 2019 23:02:47 -0700 Subject: [PATCH] Rearrange public/private property ordering --- Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs b/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs index cb23afcb44..4ba332d07b 100644 --- a/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs +++ b/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs @@ -18,9 +18,10 @@ namespace Ryujinx.Graphics.Texture.Astc private AstcLevel[] Levels { get; } - public int TotalBlockCount { get; } private bool Success { get; set; } + public int TotalBlockCount { get; } + public AstcDecoder( ReadOnlyMemory inputBuffer, Memory outputBuffer,