From 1db096a1e557ab415773124af86d1ee38e2cedc1 Mon Sep 17 00:00:00 2001 From: Michel Kremer Date: Sat, 2 Jan 2021 13:27:04 +0100 Subject: [PATCH] Use u16_fast for memory_address (#20) --- core/source/util/typedefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/source/util/typedefs.h b/core/source/util/typedefs.h index ee55b1b0..f933863a 100644 --- a/core/source/util/typedefs.h +++ b/core/source/util/typedefs.h @@ -34,7 +34,7 @@ namespace FunkyBoy { typedef uint_fast32_t u32_fast; typedef uint_fast64_t u64_fast; - typedef u32 memory_address; + typedef u16_fast memory_address; typedef int8_t i8; typedef int16_t i16;