From ef01c4f4c803c5fdb69e037a896108e5993866ab Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 8 Apr 2017 20:25:38 -0500 Subject: [PATCH] Fix int64 types for PowerPC --- src/ox/std/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/types.hpp b/src/ox/std/types.hpp index 097e540bf..478af561e 100644 --- a/src/ox/std/types.hpp +++ b/src/ox/std/types.hpp @@ -14,7 +14,7 @@ typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned int uint32_t; typedef unsigned uint_t; -#if defined(_WIN32) || defined(__APPLE__) || defined(__arm__) +#if defined(_WIN32) || defined(__APPLE__) || defined(__arm__) || defined(__ppc__) typedef long long int64_t; typedef unsigned long long uint64_t; #else