From e4c5cc3a46f0f5b83df844fb91a7f2a30995b009 Mon Sep 17 00:00:00 2001 From: AnnaSnoeijs Date: Sat, 14 Jun 2025 22:12:57 +0200 Subject: [PATCH] Corrected comment --- types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.h b/types.h index f5b3688..df3c0a4 100644 --- a/types.h +++ b/types.h @@ -5,7 +5,7 @@ #include #include "config.h" -// Only use big ints on architectures where it doesn't impact speed +// Use fastest available ints unless it's 64 bits because that uses more memory #if INT_FAST16_MAX == INT_FAST64_MAX typedef int rowsint_t; typedef unsigned columnsint_t;