Skip to content

Commit ab4f076

Browse files
committed
Use tabs before info lines for readability in multi-file scenarios
1 parent 0884005 commit ab4f076

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NDecrypt.Core/DSTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ private void Decrypt(ref uint arg1, ref uint arg2)
603603

604604
// Get a string builder for the status
605605
var sb = new StringBuilder();
606-
sb.Append("Secure Area: ");
606+
sb.Append("\tSecure Area: ");
607607

608608
// Get the encryption status
609609
bool? decrypted = CheckIfDecrypted(input);

NDecrypt.Core/ThreeDSTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ private static void UpdateEncryptCryptoAndMasks(N3DS cart, int index, Stream out
895895
for (int p = 0; p < 8; p++)
896896
{
897897
bool decrypted = cart.PossiblyDecrypted(p);
898-
sb.AppendLine($"Partition {p}: {(decrypted ? "Decrypted" : "Encrypted")}");
898+
sb.AppendLine($"\tPartition {p}: {(decrypted ? "Decrypted" : "Encrypted")}");
899899
}
900900

901901
// Return the status for all partitions

0 commit comments

Comments
 (0)