This commit is contained in:
LDj3SNuD 2019-09-11 20:19:52 +02:00 committed by GitHub
parent 81e992b5b3
commit 780ce7a492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,9 +14,9 @@ namespace ARMeilleure.Translation.AOT
{
private const string WorkDir = "RyuAot";
private const long SaveInterval = 30L; // Seconds.
private const int SaveInterval = 30; // Seconds.
internal const long MinCodeLengthToSave = 0x180L; // Bytes.
internal const int MinCodeLengthToSave = 0x180; // Bytes.
private static readonly MemoryStream _infosStream;
private static readonly MemoryStream _codesStream;