mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-10-02 21:25:51 -05:00
Apply new naming rule to all projects except Vp9 (#5407)
This commit is contained in:
@@ -134,9 +134,9 @@ namespace Ryujinx.HLE.HOS.Services.Sdb.Pl
|
||||
|
||||
private void WriteMagicAndSize(ulong offset, int size)
|
||||
{
|
||||
const int key = 0x49621806;
|
||||
const int Key = 0x49621806;
|
||||
|
||||
int encryptedSize = BinaryPrimitives.ReverseEndianness(size ^ key);
|
||||
int encryptedSize = BinaryPrimitives.ReverseEndianness(size ^ Key);
|
||||
|
||||
_storage.GetRef<int>(offset + 0) = (int)BFTTFMagic;
|
||||
_storage.GetRef<int>(offset + 4) = encryptedSize;
|
||||
@@ -180,4 +180,4 @@ namespace Ryujinx.HLE.HOS.Services.Sdb.Pl
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user