[vlc-commits] macosx/about: indicate the correct architecture
Felix Paul Kühne
git at videolan.org
Tue Sep 8 16:29:49 CEST 2020
vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Tue Sep 8 16:29:40 2020 +0200| [e1021bba8e9fce7b4d83b742301b2676e0cdb76b] | committer: Felix Paul Kühne
macosx/about: indicate the correct architecture
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e1021bba8e9fce7b4d83b742301b2676e0cdb76b
---
modules/gui/macosx/windows/VLCAboutWindowController.m | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/modules/gui/macosx/windows/VLCAboutWindowController.m b/modules/gui/macosx/windows/VLCAboutWindowController.m
index 76331dc0f9..94daa7740e 100644
--- a/modules/gui/macosx/windows/VLCAboutWindowController.m
+++ b/modules/gui/macosx/windows/VLCAboutWindowController.m
@@ -36,10 +36,11 @@
#import "views/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