From 780ce7a492e5b988dba8415d68d5d3765cda9390 Mon Sep 17 00:00:00 2001 From: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> Date: Wed, 11 Sep 2019 20:19:52 +0200 Subject: [PATCH] Nit. --- ARMeilleure/Translation/AOT/Aot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ARMeilleure/Translation/AOT/Aot.cs b/ARMeilleure/Translation/AOT/Aot.cs index 85d2cbe8c5..2629f90ddb 100644 --- a/ARMeilleure/Translation/AOT/Aot.cs +++ b/ARMeilleure/Translation/AOT/Aot.cs @@ -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;