fix compilation error on ARM64 and other platforms

This commit is contained in:
Jack Chen 2019-10-26 13:37:42 +08:00
parent 74236adf8f
commit 7fa49f67af
No known key found for this signature in database
GPG Key ID: 1B127B42AF02CF8E

View File

@ -46,6 +46,10 @@ About::About(QWidget *parent) :
QString arch = "x86";
#elif defined(__arm__) || defined(_M_ARM)
QString arch = "arm";
#elif defined(__aarch64__)
QString arch = "arm64";
#else
QString arch = "other";
#endif
QString version = tr("<font size=24>DSView %1 (%2)</font><br />")