From 514212798294ad93f80f98cb16b31a4a4a762cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Castell=C3=B3?= Date: Sat, 30 Dec 2023 23:25:20 -0300 Subject: [PATCH 1/2] fixes typo on mac icon fix --- src/qt/qt_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_main.cpp b/src/qt/qt_main.cpp index a36130984..a83946ea3 100644 --- a/src/qt/qt_main.cpp +++ b/src/qt/qt_main.cpp @@ -195,7 +195,7 @@ main(int argc, char *argv[]) SetCurrentProcessExplicitAppUserModelID(L"86Box.86Box"); #endif -#ifndef Q_OS_APPLE +#ifndef __APPLE__ # ifdef RELEASE_BUILD app.setWindowIcon(QIcon(":/settings/win/icons/86Box-green.ico")); # elif defined ALPHA_BUILD From 5cb239103947a44dd774ffb6a9611626c7498d73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Castell=C3=B3?= Date: Sun, 31 Dec 2023 00:09:50 -0300 Subject: [PATCH 2/2] Update src/qt/qt_main.cpp Accepted changes Co-authored-by: Alexander Babikov --- src/qt/qt_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_main.cpp b/src/qt/qt_main.cpp index a83946ea3..409a63248 100644 --- a/src/qt/qt_main.cpp +++ b/src/qt/qt_main.cpp @@ -195,7 +195,7 @@ main(int argc, char *argv[]) SetCurrentProcessExplicitAppUserModelID(L"86Box.86Box"); #endif -#ifndef __APPLE__ +#ifndef Q_OS_MACOS # ifdef RELEASE_BUILD app.setWindowIcon(QIcon(":/settings/win/icons/86Box-green.ico")); # elif defined ALPHA_BUILD