vlc | branch: master | Felix Paul Kühne <[email protected]> | 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 () { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
