diff options
author | Bastien Bouclet | 2018-04-07 12:43:29 +0200 |
---|---|---|
committer | Bastien Bouclet | 2018-04-07 12:44:47 +0200 |
commit | 6409e99089a1ce8783d3e5513baafebdd317b6d4 (patch) | |
tree | ebad18fabb5db8b18780971a5c9c9e01a9d2d443 | |
parent | b1d2d5619897bb00f6ec1a61962bd05dbd677b92 (diff) | |
download | scummvm-rg350-6409e99089a1ce8783d3e5513baafebdd317b6d4.tar.gz scummvm-rg350-6409e99089a1ce8783d3e5513baafebdd317b6d4.tar.bz2 scummvm-rg350-6409e99089a1ce8783d3e5513baafebdd317b6d4.zip |
N64: Remove the port-specific integer type definitions
They are identical to those detected by configure on buildbot
-rw-r--r-- | backends/platform/n64/portdefs.h | 15 |
1 files changed, 1 insertions, 14 deletions
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__ |