Versioning:

- Add platform string for ppc64.
- Rename platform string for ppc from " PowerPC" to " PPC".
This commit is contained in:
rogerman 2013-04-18 20:03:00 +00:00
parent 66ef280dde
commit e596aa777a
1 changed files with 3 additions and 1 deletions

View File

@ -52,8 +52,10 @@
#define DESMUME_PLATFORM_STRING " ARM"
#elif defined(__thumb__)
#define DESMUME_PLATFORM_STRING " ARM-Thumb"
#elif defined(__ppc64__)
#define DESMUME_PLATFORM_STRING " PPC64"
#elif defined(__ppc__) || defined(_M_PPC)
#define DESMUME_PLATFORM_STRING " PowerPC"
#define DESMUME_PLATFORM_STRING " PPC"
#else
#define DESMUME_PLATFORM_STRING ""
#endif