]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/about.m
macosx: let the about window show whether VLC runs in 32 or 64 bit mode
[vlc] / modules / gui / macosx / about.m
index a6b42bc9edddb83c949cbdb4b4f567ef2fb835b8..dc0ef540d7745ef432cf48cc9c48c0384e37c34a 100644 (file)
 #import <vlc_about.h>
 
 #ifdef __x86_64__
-#define PLATFORM "Intel"
+#define PLATFORM "Intel 64bit"
 #elif __i386__
-#define PLATFORM "Intel"
+#define PLATFORM "Intel 32bit"
 #else
-#define PLATFORM "PowerPC"
+#define PLATFORM "PowerPC 32bit"
 #endif
 
 /*****************************************************************************