Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)

This reverts commit 85dbb9559a.
This commit is contained in:
gdkchan 2018-12-04 22:52:39 -02:00 committed by GitHub
parent 85dbb9559a
commit 3615a70cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
299 changed files with 12276 additions and 12268 deletions

View file

@ -6,29 +6,29 @@ namespace Ryujinx.HLE.Utilities
{
private static readonly uint FontKey = 0x06186249;
public static byte[] DecryptFont(Stream bfttfStream)
public static byte[] DecryptFont(Stream BFTTFStream)
{
uint KXor(uint In) => In ^ 0x06186249;
using (BinaryReader reader = new BinaryReader(bfttfStream))
using (BinaryReader Reader = new BinaryReader(BFTTFStream))
{
using (MemoryStream ttfStream = new MemoryStream())
using (MemoryStream TTFStream = new MemoryStream())
{
using (BinaryWriter output = new BinaryWriter(ttfStream))
using (BinaryWriter Output = new BinaryWriter(TTFStream))
{
if (KXor(reader.ReadUInt32()) != 0x18029a7f)
if (KXor(Reader.ReadUInt32()) != 0x18029a7f)
{
throw new InvalidDataException("Error: Input file is not in BFTTF format!");
}
bfttfStream.Position += 4;
BFTTFStream.Position += 4;
for (int i = 0; i < (bfttfStream.Length - 8) / 4; i++)
for (int i = 0; i < (BFTTFStream.Length - 8) / 4; i++)
{
output.Write(KXor(reader.ReadUInt32()));
Output.Write(KXor(Reader.ReadUInt32()));
}
return ttfStream.ToArray();
return TTFStream.ToArray();
}
}
}