[vlc-devel] [PATCH 12/12] macosx/about: indicate the correct architecture

Felix Paul Kühne fkuehne at videolan.org
Mon Aug 31 19:06:02 CEST 2020


From: Felix Paul Kühne <felix at feepk.net>

---
 modules/gui/macosx/VLCAboutWindowController.m | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/gui/macosx/VLCAboutWindowController.m b/modules/gui/macosx/VLCAboutWindowController.m
index a4badff8b5..bd0f6783f6 100644
--- a/modules/gui/macosx/VLCAboutWindowController.m
+++ b/modules/gui/macosx/VLCAboutWindowController.m
@@ -35,10 +35,11 @@
 
 #import "VLCScrollingClipView.h"
 
-
-/* this is a bit weird, but we should be confident that there will be more than
- * one arch to support again one day */
+#ifdef __x86_64__
 #define PLATFORM "Intel 64bit"
+#else
+#define PLATFORM "Apple Silicon"
+#endif
 
 @interface VLCAboutWindowController ()
 {
-- 
2.24.3 (Apple Git-128)



More information about the vlc-devel mailing list