From 6409e99089a1ce8783d3e5513baafebdd317b6d4 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Sat, 7 Apr 2018 12:43:29 +0200 Subject: N64: Remove the port-specific integer type definitions They are identical to those detected by configure on buildbot --- backends/platform/n64/portdefs.h | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'backends') diff --git a/backends/platform/n64/portdefs.h b/backends/platform/n64/portdefs.h index 63ec989a8d..364520803b 100644 --- a/backends/platform/n64/portdefs.h +++ b/backends/platform/n64/portdefs.h @@ -36,17 +36,4 @@ #undef assert #define assert(x) ((x) ? 0 : (print_error("ASSERT TRIGGERED:\n\n("#x")\n%s\nline: %d", __FILE__, __LINE__))) -// Typedef basic data types in a way that is compatible with the N64 SDK. -typedef unsigned char byte; -typedef unsigned char uint8; -typedef signed char int8; -typedef unsigned short int uint16; -typedef signed short int int16; -typedef unsigned int uint32; -typedef signed int int32; - -// Define SCUMMVM_DONT_DEFINE_TYPES to prevent scummsys.h from trying to -// re-define those data types. -#define SCUMMVM_DONT_DEFINE_TYPES - -#endif +#endif // __N64_PORTDEFS__ -- cgit v1.2.3