[vlc-commits] macosx/about: indicate the correct architecture
Felix Paul Kühne
git at videolan.org
Mon Sep 7 11:48:52 CEST 2020
vlc/vlc-3.0 | branch: master | Felix Paul Kühne <felix at feepk.net> | Mon Aug 31 19:02:39 2020 +0200| [ec5c988198bee28b25b4b2c67bbc8b23dff57bc4] | committer: Felix Paul Kühne
macosx/about: indicate the correct architecture
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=ec5c988198bee28b25b4b2c67bbc8b23dff57bc4
---
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 ()
{
More information about the vlc-commits
mailing list