aboutsummaryrefslogtreecommitdiff
path: root/APEX_1.4/shared/general/meshimport/src/utils
diff options
context:
space:
mode:
authorsschirm <[email protected]>2017-02-27 16:40:12 +0100
committersschirm <[email protected]>2017-03-01 18:04:26 +0100
commit7840347c32755e94a807f978f1cbb558717ac8cf (patch)
tree295cd3ca93a45f8fcc43cf3cbf3887c0e0c5526b /APEX_1.4/shared/general/meshimport/src/utils
parentPre-release comments marking end of beta. (diff)
downloadphysx-3.4-7840347c32755e94a807f978f1cbb558717ac8cf.tar.xz
physx-3.4-7840347c32755e94a807f978f1cbb558717ac8cf.zip
PhysX 3.4, APEX 1.4 final release @21757769v3.4.0-rc-2
Diffstat (limited to 'APEX_1.4/shared/general/meshimport/src/utils')
-rw-r--r--APEX_1.4/shared/general/meshimport/src/utils/MiSutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/APEX_1.4/shared/general/meshimport/src/utils/MiSutil.cpp b/APEX_1.4/shared/general/meshimport/src/utils/MiSutil.cpp
index d6373fbd..f92bafe1 100644
--- a/APEX_1.4/shared/general/meshimport/src/utils/MiSutil.cpp
+++ b/APEX_1.4/shared/general/meshimport/src/utils/MiSutil.cpp
@@ -646,7 +646,7 @@ const char * formatNumber(MiI32 number) // JWR format this integer into a fancy
char scratch[512];
-#if defined (LINUX_GENERIC) || defined(LINUX) || defined(__CELLOS_LV2__) || defined(__APPLE__) || defined(ANDROID) || PX_PS4 || PX_LINUX_FAMILY
+#if defined (LINUX_GENERIC) || defined(LINUX) || defined(__CELLOS_LV2__) || defined(__APPLE__) || defined(ANDROID) || PX_PS4 || PX_LINUX_FAMILY || PX_NX
snprintf(scratch, 10, "%d", number);
#else
itoa(number,scratch,10);