From fe155d40d4bb4ab2ce820994922a06c1cc0a5c5a Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Thu, 4 Nov 2021 10:55:37 +0100 Subject: [PATCH] Change word to use int as base --- include/c64/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/c64/types.h b/include/c64/types.h index 436d07c..ad7f8e7 100644 --- a/include/c64/types.h +++ b/include/c64/types.h @@ -2,7 +2,7 @@ #define C64_TYPES_H typedef unsigned char byte; -typedef unsigned short word; +typedef unsigned int word; typedef unsigned long dword; typedef signed char sbyte;