Rename Aaru.Console project to Aaru.Logging.

This commit is contained in:
2025-08-17 05:50:25 +01:00
parent 1a6f7a02c6
commit 02ec8a05d8
365 changed files with 5465 additions and 5347 deletions

View File

@@ -37,7 +37,7 @@ using Aaru.CommonTypes;
using Aaru.CommonTypes.AaruMetadata;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Structs;
using Aaru.Console;
using Aaru.Logging;
namespace Aaru.Images;
@@ -195,9 +195,9 @@ public sealed partial class AppleDos
? _interleave
: _deinterleave;
for(var t = 0; t < 35; t++)
for(int t = 0; t < 35; t++)
{
for(var s = 0; s < 16; s++)
for(int s = 0; s < 16; s++)
Array.Copy(_deinterleaved, t * 16 * 256 + offsets[s] * 256, tmp, t * 16 * 256 + s * 256, 256);
}
}